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)
10 namespace DI\Definition\Dumper;
12 use DI\Definition\AliasDefinition;
13 use DI\Definition\Definition;
16 * Dumps alias definitions.
19 * @author Matthieu Napoli <matthieu@mnapoli.fr>
21 class AliasDefinitionDumper implements DefinitionDumper
26 public function dump(Definition $definition)
28 if (! $definition instanceof AliasDefinition) {
29 throw new \InvalidArgumentException(sprintf(
30 'This definition dumper is only compatible with AliasDefinition objects, %s given',
31 get_class($definition)
35 if ($definition->getName()) {
38 $definition->getName(),
39 $definition->getTargetEntryName()
45 $definition->getTargetEntryName()