Skip to content

Commit 30ecec0

Browse files
committed
Fix CS
1 parent b13212d commit 30ecec0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ static function (ChildDefinition $definition, AsPeriodicTask|AsCronTask $attribu
716716
];
717717
if ($reflector instanceof \ReflectionMethod) {
718718
if (isset($tagAttributes['method'])) {
719-
throw new LogicException(sprintf('%s attribute cannot declare a method on "%s::%s()".', $attribute::class, $reflector->class, $reflector->name));
719+
throw new LogicException(sprintf('"%s" attribute cannot declare a method on "%s::%s()".', $attribute::class, $reflector->class, $reflector->name));
720720
}
721721
$tagAttributes['method'] = $reflector->getName();
722722
}

0 commit comments

Comments
 (0)