1 | <?php |
||
8 | class DBSeed extends YarakCommand |
||
9 | { |
||
10 | /** |
||
11 | * The command signature. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $signature = 'db:seed |
||
16 | {class=DatabaseSeeder : The name of the seeder class to run.}'; |
||
17 | |||
18 | /** |
||
19 | * The command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Seed the database.'; |
||
24 | |||
25 | /** |
||
26 | * Handle the command. |
||
27 | */ |
||
28 | protected function handle() |
||
34 | } |
||
35 |
This check looks at variables that are passed out again to other methods.
If the outgoing method call has stricter type requirements than the method itself, an issue is raised.
An additional type check may prevent trouble.