for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wandu\Validator\Testers;
use Wandu\Validator\Contracts\TesterInterface;
class IntegerTester implements TesterInterface
{
/**
* {@inheritdoc}
*/
public function test($data): bool
return is_int($data);
}