Completed
Branch ddd-changes (96d3bc)
by Gabriel
05:08
created

AbstractRunner   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 53
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 6
c 1
b 0
f 0
lcom 1
cbo 1
dl 0
loc 53
ccs 17
cts 17
cp 1
rs 10

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 8 2
A getPublisher() 0 4 1
A getContext() 0 3 1
A setContext() 0 3 1
A clearContext() 0 4 1
1
<?php
2
/*
3
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
 *
15
 * This software consists of voluntary contributions made by many individuals
16
 * and is licensed under the MIT license. For more information, see
17
 * <http://www.doctrine-project.org>.
18
 */
19
20
namespace Baleen\Migrations\Service\Runner;
21
22
use Baleen\Migrations\Shared\Event\Context\ContextInterface;
23
use Baleen\Migrations\Shared\Event\MutePublisher;
24
use Baleen\Migrations\Shared\Event\PublisherInterface;
25
26
/**
27
 * Class AbstractRunner
28
 * @author Gabriel Somoza <[email protected]>
29
 */
30
abstract class AbstractRunner implements RunnerInterface
31
{
32
    /** @var PublisherInterface */
33
    private $publisher;
34
35
    /** @var ContextInterface */
36
    private $context;
37
38
    /**
39
     * AbstractRunner constructor.
40
     * @param PublisherInterface $publisher
0 ignored issues
show
Documentation introduced by
Should the type for parameter $publisher not be null|PublisherInterface?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
41
     * @param ContextInterface $context
0 ignored issues
show
Documentation introduced by
Should the type for parameter $context not be null|ContextInterface?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
42
     */
43 27
    public function __construct(PublisherInterface $publisher = null, ContextInterface $context = null)
44
    {
45 27
        if (null === $publisher) {
46 2
            $publisher = new MutePublisher();
47 2
        }
48 27
        $this->publisher = $publisher;
49 27
        $this->context = $context;
50 27
    }
51
52
    /**
53
     * @return PublisherInterface
54
     */
55 20
    final protected function getPublisher()
56
    {
57 20
        return $this->publisher;
58
    }
59
60
    /**
61
     * getContext
62
     * @return ContextInterface|null
63
     */
64 13
    final protected function getContext() {
65 13
        return $this->context;
66
    }
67
68
    /**
69
     * @inheritdoc
70
     */
71 18
    final public function setContext(ContextInterface $context) {
72 18
        $this->context = $context;
73 18
    }
74
75
    /**
76
     * @inheritdoc
77
     */
78 18
    final public function clearContext()
79
    {
80 18
        $this->context = null;
81 18
    }
82
}
83