MethodInjection.php
55 lines
| 1 | <?php |
| 2 | /** |
| 3 | * PHP-DI |
| 4 | * |
| 5 | * @link http://php-di.org/ |
| 6 | * @copyright Matthieu Napoli (http://mnapoli.fr/) |
| 7 | * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file) |
| 8 | */ |
| 9 | |
| 10 | namespace Cybot\Dependencies\DI\Definition\ObjectDefinition; |
| 11 | |
| 12 | use Cybot\Dependencies\DI\Definition\AbstractFunctionCallDefinition; |
| 13 | |
| 14 | /** |
| 15 | * Describe an injection in an object method. |
| 16 | * |
| 17 | * @author Matthieu Napoli <matthieu@mnapoli.fr> |
| 18 | */ |
| 19 | class MethodInjection extends AbstractFunctionCallDefinition |
| 20 | { |
| 21 | /** |
| 22 | * @var string |
| 23 | */ |
| 24 | private $methodName; |
| 25 | |
| 26 | /** |
| 27 | * @param string $methodName |
| 28 | * @param array $parameters |
| 29 | */ |
| 30 | public function __construct($methodName, array $parameters = []) |
| 31 | { |
| 32 | $this->methodName = (string) $methodName; |
| 33 | $this->parameters = $parameters; |
| 34 | } |
| 35 | |
| 36 | public static function constructor(array $parameters = []) |
| 37 | { |
| 38 | return new self('__construct', $parameters); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * @return string Method name |
| 43 | */ |
| 44 | public function getMethodName() |
| 45 | { |
| 46 | return $this->methodName; |
| 47 | } |
| 48 | |
| 49 | public function merge(MethodInjection $definition) |
| 50 | { |
| 51 | // In case of conflicts, the current definition prevails. |
| 52 | $this->parameters = $this->parameters + $definition->parameters; |
| 53 | } |
| 54 | } |
| 55 |