Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subversal
/
elementor
/
vendor_prefixed
/
php-di
/
php-di
/
src
/
Definition
/
Exception
:
InvalidDefinition.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace ElementorDeps\DI\Definition\Exception; use ElementorDeps\DI\Definition\Definition; use ElementorDeps\Psr\Container\ContainerExceptionInterface; /** * Invalid DI definitions. * * @author Matthieu Napoli <matthieu@mnapoli.fr> */ class InvalidDefinition extends \Exception implements ContainerExceptionInterface { public static function create(Definition $definition, string $message, \Exception $previous = null) : self { return new self(\sprintf('%s' . \PHP_EOL . 'Full definition:' . \PHP_EOL . '%s', $message, (string) $definition), 0, $previous); } }