shell bypass 403
<?php declare(strict_types=1); namespace DI\Definition; /** * A definition that extends a previous definition with the same name. * * @author Matthieu Napoli <[email protected]> */ interface ExtendsPreviousDefinition extends Definition { public function setExtendedDefinition(Definition $definition) : void; }