Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Sep 23, 2024
1 parent 9ea93c2 commit 2d4592d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@
"php": "^8.2",
"composer-runtime-api": "^2.2",
"composer/semver": "^3.0",
"illuminate/console": "^11.22",
"illuminate/database": "^11.22",
"illuminate/filesystem": "^11.22",
"illuminate/support": "^11.22",
"illuminate/console": "^11.24",
"illuminate/database": "^11.24",
"illuminate/filesystem": "^11.24",
"illuminate/support": "^11.24",
"orchestra/canvas-core": "^9.0",
"orchestra/testbench-core": "^9.2",
"symfony/polyfill-php83": "^1.28",
"symfony/yaml": "^7.0"
},
"require-dev": {
"laravel/framework": "^11.22",
"laravel/framework": "^11.24",
"laravel/pint": "^1.17",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.11",
Expand Down
3 changes: 0 additions & 3 deletions tests/Feature/Console/JobMakeCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ public function it_can_generate_job_file()
$this->assertFileContains([
'namespace App\Jobs;',
'use Illuminate\Contracts\Queue\ShouldQueue;',
'use Illuminate\Foundation\Bus\Dispatchable;',
'use Illuminate\Foundation\Queue\Queueable;',
'use Illuminate\Queue\InteractsWithQueue;',
'use Illuminate\Queue\SerializesModels;',
'class FooCreated implements ShouldQueue',
' use Queueable;',
], 'app/Jobs/FooCreated.php');
Expand Down
3 changes: 0 additions & 3 deletions workbench/tests/JobMakeCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ public function testItCanGenerateJobFile()
$this->assertFileContains([
'namespace App\Jobs;',
'use Illuminate\Contracts\Queue\ShouldQueue;',
'use Illuminate\Foundation\Bus\Dispatchable;',
'use Illuminate\Foundation\Queue\Queueable;',
'use Illuminate\Queue\InteractsWithQueue;',
'use Illuminate\Queue\SerializesModels;',
'class FooCreated implements ShouldQueue',
'use Queueable;',
], 'app/Jobs/FooCreated.php');
Expand Down

0 comments on commit 2d4592d

Please sign in to comment.