Skip to content

Commit f2b2d72

Browse files
committed
test(laravel): class AddAssetSymlinkFolders from TestBench namespace
1 parent c899a3d commit f2b2d72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Laravel/workbench/app/Providers/WorkbenchServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
use Illuminate\Filesystem\Filesystem;
1919
use Illuminate\Support\ServiceProvider;
2020
use Orchestra\Testbench\Foundation\Events\ServeCommandStarted;
21+
use Orchestra\Testbench\Workbench\Actions\AddAssetSymlinkFolders;
2122
use Orchestra\Testbench\Workbench\Workbench;
22-
use Orchestra\Workbench\Listeners\AddAssetSymlinkFolders;
2323
use Symfony\Component\Console\Input\ArrayInput;
2424
use Symfony\Component\Console\Output\NullOutput;
2525

@@ -40,7 +40,7 @@ public function register(): void
4040
*/
4141
public function boot(): void
4242
{
43-
$assets = new AddAssetSymlinkFolders(Workbench::configuration(), $this->app->make(Filesystem::class));
43+
$assets = new AddAssetSymlinkFolders($this->app->make(Filesystem::class), Workbench::configuration());
4444
$input = new ArrayInput([]);
4545
$output = new NullOutput();
4646
$assets->handle(new ServeCommandStarted($input, $output, new Factory(new OutputStyle($input, $output))));

0 commit comments

Comments
 (0)