Skip to content

Commit a55d0cd

Browse files
committed
Bring back workbench service provider
1 parent 5448ad2 commit a55d0cd

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

testbench.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
providers:
2+
- Workbench\App\Providers\WorkbenchServiceProvider
23
- Stackkit\LaravelGoogleCloudScheduler\CloudSchedulerServiceProvider
34

45
migrations:
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace Workbench\App\Providers;
4+
5+
use Illuminate\Support\ServiceProvider;
6+
use Workbench\App\Console\Commands\TestCommand;
7+
use Workbench\App\Console\Commands\TestCommand2;
8+
9+
class WorkbenchServiceProvider extends ServiceProvider
10+
{
11+
public function register(): void
12+
{
13+
$this->commands([
14+
TestCommand::class,
15+
TestCommand2::class,
16+
]);
17+
}
18+
}

0 commit comments

Comments
 (0)