for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Infinitypaul\Validator\Rules;
class Image extends Rule
{
public function passes($field, $value, $data): bool
if (getimagesize($value)) {
return true;
}
return false;
public function message($field): string
return $field.' Is Not An Image';