Commit db5be3fe authored by Kulya's avatar Kulya 😊

n_storage

parent c530e678
Pipeline #16 canceled with stages
*
!.gitignore
\ No newline at end of file
config.php
routes.php
compiled.php
services.json
events.scanned.php
routes.scanned.php
down
*
!.gitignore
\ No newline at end of file
This diff is collapsed.
<include>
<extension name="cdquality_stereo_conferences">
<condition field="destination_number" expression="(7777)">
<action application="answer"/>
<action application="send_display" data="vMajlis|$1"/>
<action application="set" data="conference_member_flags=join-vid-floor"/>
<action application="conference" data="$1@video-mcu-stereo"/>
</condition>
</extension>
</include>
\ No newline at end of file
<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
$this->visit('/')
->see('Laravel 5');
}
}
<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* The base URL to use while testing the application.
*
* @var string
*/
protected $baseUrl = 'http://localhost';
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
return $app;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment