Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace DI\Definition;
6
 
7
/**
8
 * A definition that extends a previous definition with the same name.
9
 *
10
 * @author Matthieu Napoli <matthieu@mnapoli.fr>
11
 */
12
interface ExtendsPreviousDefinition extends Definition
13
{
14
    public function setExtendedDefinition(Definition $definition) : void;
15
}