We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e93cc21 commit 776d6b0Copy full SHA for 776d6b0
config/filesystems.php
@@ -76,6 +76,7 @@
76
77
'links' => [
78
public_path('storage') => storage_path('app/public'),
79
+ public_path('media') => storage_path('app/media'),
80
],
81
82
];
tests/CreatesApplication.php
@@ -5,15 +5,11 @@
5
namespace Tests;
6
7
use Illuminate\Contracts\Console\Kernel;
8
+use Illuminate\Foundation\Application;
9
10
trait CreatesApplication
11
{
- /**
12
- * Creates the application.
13
- *
14
- * @return \Illuminate\Foundation\Application
15
- */
16
- public function createApplication()
+ public function createApplication(): Application
17
18
$app = require __DIR__.'/../bootstrap/app.php';
19
tests/Feature/Auth/LoginTest.php
@@ -0,0 +1,3 @@
1
+<?php
2
+
3
+declare(strict_types=1);
0 commit comments