for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DeGraciaMathieu\FreezeMyScalar\Rules;
use DeGraciaMathieu\FreezeMyScalar\Contracts\Rule;
class IntegerRule implements Rule
{
/**
* @param mixed $content
* @return boolean
*/
public function verify($content)
return is_int($content);
}