Current Path : /opt/cpanel/ea-php54/root/usr/share/tests/pear/HTML_QuickForm2/QuickForm2/_files/ |
Current File : //opt/cpanel/ea-php54/root/usr/share/tests/pear/HTML_QuickForm2/QuickForm2/_files/FakeRule.php |
<?php /** * Base class for HTML_QuickForm2 rules */ require_once 'HTML/QuickForm2/Rule.php'; /** * Class used to test creation of rules via HTML_QuickForm2_Factory::createRule() */ class FakeRule extends HTML_QuickForm2_Rule { public $owner; public $registeredType; protected function validateOwner() { return true; } } ?>