cubiche /
specification
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | |||
| 3 | /** |
||
| 4 | * This file is part of the Cubiche package. |
||
| 5 | * |
||
| 6 | * Copyright (c) Cubiche |
||
| 7 | * |
||
| 8 | * For the full copyright and license information, please view the LICENSE |
||
| 9 | * file that was distributed with this source code. |
||
| 10 | */ |
||
| 11 | namespace Cubiche\Core\Specification; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Not Specification Class. |
||
| 15 | * |
||
| 16 | * @author Karel Osorio Ramírez <[email protected]> |
||
| 17 | */ |
||
| 18 | class NotSpecification extends Specification |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var SpecificationInterface |
||
| 22 | */ |
||
| 23 | protected $specification; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param SpecificationInterface $specification |
||
| 27 | */ |
||
| 28 | public function __construct(SpecificationInterface $specification) |
||
| 29 | { |
||
| 30 | $this->specification = $specification; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function evaluate($value) |
||
| 37 | { |
||
| 38 | return !$this->specification()->evaluate($value); |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return \Cubiche\Core\Specification\SpecificationInterface |
||
| 43 | */ |
||
| 44 | public function specification() |
||
| 45 | { |
||
| 46 | return $this->specification; |
||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function not() |
||
| 53 | { |
||
| 54 | return $this->specification(); |
||
| 55 | } |
||
| 56 | } |
||
| 57 |