foo_bar example

/** * Gets the public 'baz' shared service. * * @return \stdClass */
    protected static function getBazService($container$lazyLoad = true)
    {
        if (true === $lazyLoad) {
            return $container->services['baz'] = $container->createProxy('stdClassProxy2fc7938', static fn () => \stdClassProxy2fc7938::createLazyProxy(static fn () => self::getBazService($container, false)));
        }

        return \foo_bar();
    }

    /** * Gets the public 'buz' shared service. * * @return \stdClass */
    protected static function getBuzService($container$lazyLoad = true)
    {
        if (true === $lazyLoad) {
            return $container->services['buz'] = $container->createProxy('stdClassProxy2fc7938', static fn () => \stdClassProxy2fc7938::createLazyProxy(static fn () => self::getBuzService($container, false)));
        }
Home | Imprint | This part of the site doesn't use cookies.