Passed
Push — master ( bc6688...f0a8fd )
by Dāvis
03:26
created

CompositeSpecification   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 24
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A orX() 0 3 1
A andX() 0 3 1
A not() 0 3 1
1
<?php
2
3
namespace Sludio\HelperBundle\Script\Specification;
4
5
/**
6
 * Composite specification
7
 */
8
abstract class CompositeSpecification implements SpecificationInterface
9
{
10
    /**
11
     * {@inheritdoc}
12
     */
13
    public function andX(SpecificationInterface $specification)
14
    {
15
        return new AndSpecification($this, $specification);
16
    }
17
18
    /**
19
     * {@inheritdoc}
20
     */
21
    public function orX(SpecificationInterface $specification)
22
    {
23
        return new OrSpecification($this, $specification);
24
    }
25
26
    /**
27
     * {@inheritdoc}
28
     */
29
    public function not()
30
    {
31
        return new NotSpecification($this);
32
    }
33
}