add set scheduling api
This commit is contained in:
parent
bdb266746d
commit
98ae9bf088
20 changed files with 935 additions and 1 deletions
|
|
@ -20,4 +20,11 @@ class RequestInput
|
|||
|
||||
return null;
|
||||
}
|
||||
|
||||
public function integer(string $key): ?int
|
||||
{
|
||||
$value = $this->request->input($key);
|
||||
|
||||
return is_int($value) ? $value : null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue