Skip to content

Commit 776d6b0

Browse files
committed
chore: wip
1 parent e93cc21 commit 776d6b0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

config/filesystems.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676

7777
'links' => [
7878
public_path('storage') => storage_path('app/public'),
79+
public_path('media') => storage_path('app/media'),
7980
],
8081

8182
];

tests/CreatesApplication.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,11 @@
55
namespace Tests;
66

77
use Illuminate\Contracts\Console\Kernel;
8+
use Illuminate\Foundation\Application;
89

910
trait CreatesApplication
1011
{
11-
/**
12-
* Creates the application.
13-
*
14-
* @return \Illuminate\Foundation\Application
15-
*/
16-
public function createApplication()
12+
public function createApplication(): Application
1713
{
1814
$app = require __DIR__.'/../bootstrap/app.php';
1915

tests/Feature/Auth/LoginTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
declare(strict_types=1);

0 commit comments

Comments
 (0)