. */ declare(strict_types=1); namespace SP\Tests; use Attribute; /** * Class InjectCrypt */ #[Attribute(Attribute::TARGET_METHOD)] final readonly class InjectCrypt { public function __construct(public string $returnValue = 'some_data') { } }