| 1 | <?php |
||
| 12 | class NegateCondition implements ConditionInterface { |
||
| 13 | /** |
||
| 14 | * Condition to negate. |
||
| 15 | * |
||
| 16 | * @var ConditionInterface |
||
| 17 | */ |
||
| 18 | protected $condition = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Constructor. |
||
| 22 | * |
||
| 23 | * @param mixed $condition |
||
| 24 | */ |
||
| 25 | public function __construct( $condition ) { |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritDoc} |
||
| 35 | */ |
||
| 36 | public function isSatisfied( Request $request ) { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritDoc} |
||
| 42 | */ |
||
| 43 | public function getArguments( Request $request ) { |
||
| 46 | } |
||
| 47 |