| 1 | <?php |
||
| 19 | class InvalidOptionValueException extends FormzException |
||
| 20 | { |
||
| 21 | const WRONG_FORM_TYPE = 'The form class must be an instance of "%s", given value: "%s".'; |
||
| 22 | |||
| 23 | const WRONG_BACKEND_CACHE_TYPE = 'The cache class name given in configuration "config.tx_formz.settings.defaultBackendCache" must inherit "%s" (current value: "%s")'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @code 1457442462 |
||
| 27 | * |
||
| 28 | * @param string $name |
||
| 29 | * @return self |
||
| 30 | */ |
||
| 31 | final public static function formViewHelperWrongFormType($name) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @code 1459251263 |
||
| 44 | * |
||
| 45 | * @param string $className |
||
| 46 | * @return self |
||
| 47 | */ |
||
| 48 | final public static function wrongBackendCacheType($className) |
||
| 58 | } |
||
| 59 |