Pass quota limit as a console method

This commit is contained in:
osaajani 2021-06-08 21:01:26 +02:00
parent 120f56fad7
commit cb38447feb
10 changed files with 148 additions and 164 deletions

View file

@ -66,9 +66,9 @@ namespace controllers\internals;
*
* @return array
*/
public get_events_by_type_and_date_for_user (int $id_user, string $type, \DateTime $since, ?\DateTime $until = null)
public function get_events_by_type_and_date_for_user (int $id_user, string $type, \DateTime $since, ?\DateTime $until = null)
{
$this->get_model->get_events_by_type_and_date_for_user ($id_user, $type, $since, $until);
$this->get_model()->get_events_by_type_and_date_for_user ($id_user, $type, $since, $until);
}
/**