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 |
|
|
|
|
41
|
|
|
* @param ContextInterface $context |
|
|
|
|
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
|
|
|
|
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.