| 1 | <?php |
||
| 14 | class ListAllCountriesTask extends Task |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var \App\Containers\Country\Data\Repositories\CountryRepository |
||
| 18 | */ |
||
| 19 | private $countryRepository; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * ListAllCountriesTask constructor. |
||
| 23 | * |
||
| 24 | * @param \App\Containers\Country\Data\Repositories\CountryRepository $countryRepository |
||
| 25 | */ |
||
| 26 | public function __construct(CountryRepository $countryRepository) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return mixed |
||
| 33 | */ |
||
| 34 | public function run() |
||
| 42 | |||
| 43 | } |
||
| 44 |