| 1 | <?php |
||
| 10 | abstract class AbstractRruleTransformer |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param string $rRule |
||
| 14 | * @throws \InvalidArgumentException |
||
| 15 | * @return mixed |
||
| 16 | */ |
||
| 17 | public function transform($rRule) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $rRule |
||
| 30 | * @param string $ruleKey |
||
| 31 | * @throws \InvalidArgumentException |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function throwExceptionOnInvalidParameter($rRule, $ruleKey) |
||
| 40 | } |
||
| 41 |