We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 16 | abstract class AbstractWrapper2 extends AbstractRule |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var RuleInterface |
||
| 20 | */ |
||
| 21 | private $rule; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param RuleInterface $rule |
||
| 25 | */ |
||
| 26 | 1 | public function __construct(RuleInterface $rule) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Returns the wrappered rule. |
||
| 33 | * |
||
| 34 | * @throws ComponentException |
||
| 35 | * |
||
| 36 | * @return RuleInterface |
||
| 37 | */ |
||
| 38 | 1 | public function getRule() |
|
| 42 | } |
||
| 43 |