@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
80 | - * @param $hostsInFile |
|
80 | + * @param \Illuminate\Support\Collection $hostsInFile |
|
81 | 81 | */ |
82 | 82 | protected function deleteMissingHosts($hostsInFile) |
83 | 83 | { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
95 | - * @param $hostsInFile |
|
95 | + * @param \Illuminate\Support\Collection $hostsInFile |
|
96 | 96 | */ |
97 | 97 | protected function updateOrCreateHosts($hostsInFile) |
98 | 98 | { |
@@ -3,9 +3,8 @@ |
||
3 | 3 | namespace Spatie\ServerMonitor\Commands; |
4 | 4 | |
5 | 5 | use File; |
6 | -use Illuminate\Database\Eloquent\Collection; |
|
7 | -use Spatie\ServerMonitor\Models\Host; |
|
8 | 6 | use Spatie\ServerMonitor\Models\Check; |
7 | +use Spatie\ServerMonitor\Models\Host; |
|
9 | 8 | |
10 | 9 | class SyncFile extends BaseCommand |
11 | 10 | { |