Example #1
0
 /**
  * Find All Drink
  * @return Dessert[]
  */
 public function getAll()
 {
     return parent::findAll(Dessert::class);
 }
Example #2
0
 /**
  * Find All User
  * @return Meal[]
  */
 public function getAll()
 {
     return parent::findAll(Meal::class);
 }
Example #3
0
 /**
  * Find All User
  * @return Location[]
  */
 public function getAll()
 {
     return parent::findAll(Location::class);
 }
Example #4
0
 /**
  * Find All
  * @return Config[]
  */
 public function getAll()
 {
     return parent::findAll(Config::class);
 }
Example #5
0
 /**
  * Find All User
  * @return TimeFrame[]
  */
 public function getAll()
 {
     return parent::findAll(TimeFrame::class);
 }
Example #6
0
 /**
  * Find All Drink
  * @return Drink[]
  */
 public function getAll()
 {
     return parent::findAll(Drink::class);
 }