15 lines
256 B
PHP
15 lines
256 B
PHP
<?php namespace Tests\Support\Validation;
|
|
|
|
class TestRules {
|
|
|
|
public function customError(string $str, string &$error = null)
|
|
{
|
|
$error = 'My lovely error';
|
|
|
|
return false;
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
}
|