Total Complexity | 3 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 27.27% |
Changes | 0 |
1 | <?php |
||
9 | class RetrieveAllGpsCoordinates extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The name and signature of the console command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'retrieve-all-gps-coordinates'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Assign to all the venues the corresponding GPS coordinates'; |
||
24 | |||
25 | /** |
||
26 | * Create a new command instance. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | 152 | public function __construct() |
|
31 | { |
||
32 | 152 | parent::__construct(); |
|
33 | 152 | } |
|
34 | |||
35 | /** |
||
36 | * Execute the console command. |
||
37 | * |
||
38 | * @param |
||
39 | * @return mixed |
||
40 | */ |
||
|
|||
41 | public function handle(){ |
||
50 | } |
||
51 | } |
||
53 |