| 1 | <?php |
||
| 11 | abstract class AbstractExtractor implements RruleExtractorInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param string $rRule |
||
| 15 | * @throws InvalidRruleException |
||
| 16 | * @return array|null |
||
| 17 | */ |
||
| 18 | public function extract($rRule) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $rRule |
||
| 31 | * @param string $ruleKey |
||
| 32 | * @throws InvalidRruleException |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function throwExceptionOnInvalidParameter($rRule, $ruleKey) |
||
| 41 | } |
||
| 42 |