Total Complexity | 5 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class TenantDatabase implements ShouldQueue |
||
13 | { |
||
14 | use Dispatchable; |
||
15 | use InteractsWithQueue; |
||
16 | use Queueable; |
||
17 | |||
18 | protected $tenant; |
||
19 | |||
20 | protected $tenantManager; |
||
21 | |||
22 | public function __construct(Tenant $tenant, TenantManager $tenantManager) |
||
26 | } |
||
27 | |||
28 | public function handle() |
||
40 | } |
||
41 | } |
||
42 | |||
43 | private function migrate() |
||
55 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.