* DI\get('My\Custom\LogBackend') * ]) * * @param mixed|array $values A value or an array of values to add to the array. * * @since 5.0 */ function add($values): ArrayDefinitionExtension { if (!is_array($values)) { $values = [$values]; } return new ArrayDefinitionExtension($values); } } if (!function_exists('SmashBalloon\YoutubeFeed\Vendor\DI\string')) { /** * Helper for concatenating strings. * * Example: * * 'log.filename' => DI\string('{app.path}/app.log') * * @param string $expression A string expression. Use the `{}` placeholders to reference other container entries. * * @since 5.0 */ function string(string $expression): StringDefinition { return new StringDefinition($expression); } } Kent T | Kaigozan Dojo
Hoppa till innehåll

Kent T