authserver/testCAS/tests/TestCase.php
author durandn
Wed, 05 Aug 2015 15:04:30 +0200
changeset 71 9abfe4f7a03f
parent 0 1afc9d2ab94d
permissions -rw-r--r--
fixed errors in AnnotationsController + added support for timeRange for PopCorn player (youtube etc) + fix slight mistake in timerange code

<?php

class TestCase extends Illuminate\Foundation\Testing\TestCase
{
    /**
     * Creates the application.
     *
     * @return \Illuminate\Foundation\Application
     */
    public function createApplication()
    {
        $app = require __DIR__.'/../bootstrap/app.php';

        $app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();

        return $app;
    }
}