Skip to content

Commit 1f91e36

Browse files
committed
feat: add job stub
1 parent 7030c1d commit 1f91e36

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

src/Queue/Commands/stubs/job.stub

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace App\Jobs;
4+
5+
use Leaf\Job;
6+
7+
class ClassName extends Job
8+
{
9+
/**
10+
* Handle the job.
11+
*
12+
* @return void
13+
*/
14+
public function handle()
15+
{
16+
echo 'This is example output from ClassName';
17+
}
18+
}

0 commit comments

Comments
 (0)