Newer
Older
framework / _support / Validation / TestRules.php
@Jim Parry Jim Parry on 1 Mar 2019 256 bytes Release 4.0.0-beta.1
<?php namespace Tests\Support\Validation;

class TestRules {

	public function customError(string $str, string &$error = null)
	{
		$error = 'My lovely error';

		return false;
	}

	//--------------------------------------------------------------------

}