* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Tests\Service\Fixtures; use Symfony\Contracts\Service\Attribute\SubscribedService; use Symfony\Contracts\Service\ServiceMethodsSubscriberTrait; use Symfony\Contracts\Service\ServiceSubscriberInterface; final class NonHookedPropertyService implements ServiceSubscriberInterface { use ServiceMethodsSubscriberTrait; #[SubscribedService] public \stdClass $myDependency; }