migrate to gtea from bistbucket
This commit is contained in:
20
public/restaurant/resources/stubs/action.stub
Normal file
20
public/restaurant/resources/stubs/action.stub
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace DummyNamespace;
|
||||
|
||||
use App\Models\DummyModel;
|
||||
|
||||
class DummyClass
|
||||
{
|
||||
protected $model;
|
||||
|
||||
public function __construct(DummyModel $model)
|
||||
{
|
||||
$this->model = $model;
|
||||
}
|
||||
|
||||
public function handle($request)
|
||||
{
|
||||
// Action implementation for DummyAction
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user