* @license http://www.apache.org/licenses/LICENSE-2.0 * @package EPGService\Parsers */ final class IntegerParser { /** * @param mixed $value * * @return int */ public static function get($value): int { return filter_var($value, FILTER_VALIDATE_INT); } }