authserver/testCAS/tests/TestCase.php
author rougeronj
Thu, 10 Sep 2015 14:49:04 +0200
changeset 110 d731c2917e76
parent 0 1afc9d2ab94d
permissions -rw-r--r--
Merge with 111a1333513a24f720249c59259d07b7e5401efa

<?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;
    }
}