1 | <?php |
||
14 | class Social extends Command |
||
15 | { |
||
16 | /** |
||
17 | * The name and signature of the console command. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $signature = 'acacha:social'; |
||
22 | |||
23 | /** |
||
24 | * The console command description. |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $description = 'Configure social login in your Laravel app'; |
||
29 | |||
30 | /** |
||
31 | * Social network configurator service. |
||
32 | * |
||
33 | * @var ConfigureSocialServicesFactory |
||
34 | */ |
||
35 | protected $configurator; |
||
36 | |||
37 | /** |
||
38 | * Create a new command instance. |
||
39 | * |
||
40 | * @param ConfigureSocialServicesFactory $configurator |
||
41 | */ |
||
42 | public function __construct(ConfigureSocialServicesFactory $configurator) |
||
47 | |||
48 | /** |
||
49 | * Execute the console command. |
||
50 | * |
||
51 | * @return mixed |
||
52 | */ |
||
53 | public function handle() |
||
64 | } |
||
65 |
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.