| 1 | <?php |
||
| 21 | trait ConfigurableConfiguration |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var \expect\ResultReporter|null |
||
| 25 | */ |
||
| 26 | private $resultReporter = null; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var \expect\PackageRegistrar[] |
||
| 30 | */ |
||
| 31 | private $matcherRegistrars = []; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function getResultReporter() |
||
| 37 | { |
||
| 38 | return $this->resultReporter; |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | public function getMatcherRegistrars() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function merge(Configuration $config) |
||
| 67 | } |
||
| 68 |