1 | <?php |
||
10 | class SyncProvidedRoutesCommand extends Command |
||
11 | { |
||
12 | /** |
||
13 | * The name and signature of the console command. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $signature = 'dynamic-route:provided:sync'; |
||
18 | |||
19 | /** |
||
20 | * The console command description. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $description = 'Runs the publish and cleanup command in one go.'; |
||
25 | |||
26 | /** |
||
27 | * The route compiler |
||
28 | * |
||
29 | * @var RouteDeclarationCompiler |
||
30 | */ |
||
31 | protected $publisher; |
||
32 | |||
33 | /** |
||
34 | * Create a new command instance. |
||
35 | * |
||
36 | * @param RoutePublisher $publisher |
||
37 | */ |
||
38 | public function __construct(RoutePublisher $publisher) |
||
44 | |||
45 | /** |
||
46 | * Execute the console command. |
||
47 | * |
||
48 | * @return mixed |
||
49 | */ |
||
50 | public function handle() |
||
55 | } |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..