Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
php-di
/
php-di
/
src
/
Definition
/
Filename :
ExtendsPreviousDefinition.php
back
Copy
<?php declare(strict_types=1); namespace DI\Definition; /** * A definition that extends a previous definition with the same name. * * @author Matthieu Napoli <matthieu@mnapoli.fr> */ interface ExtendsPreviousDefinition extends Definition { public function setExtendedDefinition(Definition $definition) : void; }