add open sans via https

This commit is contained in:
Arno Kaimbacher 2019-01-16 14:21:03 +01:00
parent 4504a0dcf8
commit b74927b5f2
2 changed files with 14 additions and 15 deletions

View file

@ -1,19 +1,18 @@
<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase {
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
/**
* 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;
}
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
return $app;
}
}