/usr/share/php/Symfony/Component/DependencyInjection/Loader/Configurator/Traits
NameSizeModeActions
AbstractTrait.php6490644editdlrm
ArgumentTrait.php9880644editdlrm
AutoconfigureTrait.php8060644editdlrm
AutowireTrait.php5720644editdlrm
BindTrait.php15590644editdlrm
CallTrait.php10700644editdlrm
ClassTrait.php5450644editdlrm
ConfiguratorTrait.php7170644editdlrm
DecorateTrait.php11010644editdlrm
DeprecateTrait.php16470644editdlrm
FactoryTrait.php12130644editdlrm
FileTrait.php5670644editdlrm
LazyTrait.php8070644editdlrm
ParentTrait.php14560644editdlrm
PropertyTrait.php5970644editdlrm
PublicTrait.php6540644editdlrm
ShareTrait.php5710644editdlrm
SyntheticTrait.php6630644editdlrm
TagTrait.php11450644editdlrm
Edit: /usr/share/php/Symfony/Component/DependencyInjection/Loader/Configurator/Traits/DeprecateTrait.php (1647B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Loader\Configurator\Traits; use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException; trait DeprecateTrait { /** * Whether this definition is deprecated, that means it should not be called anymore. * * @param string $package The name of the composer package that is triggering the deprecation * @param string $version The version of the package that introduced the deprecation * @param string $message The deprecation message to use * * @return $this * * @throws InvalidArgumentException when the message template is invalid */ final public function deprecate(/* string $package, string $version, string $message */): self { $args = \func_get_args(); $package = $version = $message = ''; if (\func_num_args() < 3) { trigger_deprecation('symfony/dependency-injection', '5.1', 'The signature of method "%s()" requires 3 arguments: "string $package, string $version, string $message", not defining them is deprecated.', __METHOD__); $message = (string) ($args[0] ?? null); } else { $package = (string) $args[0]; $version = (string) $args[1]; $message = (string) $args[2]; } $this->definition->setDeprecated($package, $version, $message); return $this; } }