| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | class NegateCondition implements ConditionInterface { |
||
| 18 | /** |
||
| 19 | * Condition to negate. |
||
| 20 | * |
||
| 21 | * @var ConditionInterface |
||
| 22 | */ |
||
| 23 | protected $condition = null; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Constructor. |
||
| 27 | * |
||
| 28 | * @codeCoverageIgnore |
||
| 29 | * @param ConditionInterface $condition |
||
| 30 | */ |
||
| 31 | public function __construct( $condition ) { |
||
| 32 | $this->condition = $condition; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritDoc} |
||
| 37 | */ |
||
| 38 | 1 | public function isSatisfied( RequestInterface $request ) { |
|
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritDoc} |
||
| 44 | */ |
||
| 45 | 1 | public function getArguments( RequestInterface $request ) { |
|
| 47 | } |
||
| 48 | } |
||
| 49 |