for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mvkasatkin\typecast\type;
class TypeInt extends Type
{
/**
* @param $value
*
* @return int|null
*/
public function cast($value)
return $value === null ? $this->default : (int)$value;
}