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

class TestRules {

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

		return false;
	}

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

}