type hints on some fields
This commit is contained in:
parent
622e099b97
commit
786c4be726
@ -25,7 +25,7 @@ class AircraftRepository extends BaseRepository implements CacheableInterface
|
||||
* Return the list of aircraft formatted for a select box
|
||||
* @return array
|
||||
*/
|
||||
public function selectBoxList()
|
||||
public function selectBoxList(): array
|
||||
{
|
||||
$retval = [];
|
||||
$items = $this->all();
|
||||
|
@ -25,7 +25,7 @@ class AirlineRepository extends BaseRepository implements CacheableInterface
|
||||
* Return the list of airline formatted for a select box
|
||||
* @return array
|
||||
*/
|
||||
public function selectBoxList()
|
||||
public function selectBoxList(): array
|
||||
{
|
||||
$retval = [];
|
||||
$items = $this->all();
|
||||
|
@ -25,7 +25,7 @@ class AirportRepository extends BaseRepository implements CacheableInterface
|
||||
* Return the list of airports formatted for a select box
|
||||
* @return array
|
||||
*/
|
||||
public function selectBoxList()
|
||||
public function selectBoxList(): array
|
||||
{
|
||||
$retval = [];
|
||||
$items = $this->all();
|
||||
|
Loading…
Reference in New Issue
Block a user