Api\StarterKit\Utils\Constants::getParameterKeyMaxId PHP Method

getParameterKeyMaxId() public static method

Get the max-id parameter key
public static getParameterKeyMaxId ( ) : mixed
return mixed
    public static function getParameterKeyMaxId()
    {
        return config('consts.ParameterMaxId');
    }

Usage Example

Esempio n. 1
0
 /**
  * @param Request $request
  * @return mixed
  */
 public function getMaxId(Request $request)
 {
     return $request->get(Constants::getParameterKeyMaxId());
 }