| 1 | <?php |
||
| 6 | trait Auth |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * The auth instance. |
||
| 10 | * |
||
| 11 | * @var |
||
| 12 | */ |
||
| 13 | protected $auth; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Get or make an auth instance. |
||
| 17 | * |
||
| 18 | * @return \Illuminate\Foundation\Application|mixed |
||
| 19 | */ |
||
| 20 | protected function getAuth() |
||
| 28 | |||
| 29 | abstract public function config($string, $children); |
||
| 30 | } |
||
| 31 |
This check looks for function calls that miss required arguments.