1 | <?php |
||
24 | class DataProvidersImport extends Command |
||
25 | { |
||
26 | /** |
||
27 | * The name and signature of the console command. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $signature = 'data-providers:import'; |
||
32 | |||
33 | /** |
||
34 | * The console command description. |
||
35 | * |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $description = 'Run import articles from external services'; |
||
39 | |||
40 | /** |
||
41 | * @var array |
||
42 | */ |
||
43 | private $published = []; |
||
44 | |||
45 | /** |
||
46 | * @param Manager $manager |
||
47 | * @throws \InvalidArgumentException |
||
48 | */ |
||
49 | public function handle(Manager $manager) |
||
70 | |||
71 | /** |
||
72 | * @param Manager $manager |
||
73 | */ |
||
74 | private function importNotPublished(Manager $manager) |
||
84 | |||
85 | private function import(\DateTime $time, DataProviderInterface $provider) |
||
101 | } |
||
102 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.