Skip to content

Commit 450cabb

Browse files
committed
[PropertyInfo] Update phpdoc
1 parent 80e402b commit 450cabb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/PropertyInfo/PropertyAttributesExtractorInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
namespace Symfony\Component\PropertyInfo;
1313

14+
/**
15+
* @author Andrew Alyamovsky <andrew.alyamovsky@gmail.com>
16+
*/
1417
interface PropertyAttributesExtractorInterface
1518
{
1619
/**
@@ -19,9 +22,6 @@ interface PropertyAttributesExtractorInterface
1922
* Returns an array of attributes, each attribute is an associative array with the following keys:
2023
* - name: The fully-qualified class name of the attribute
2124
* - arguments: An associative array of attribute arguments
22-
*
23-
* Example:
24-
* [['name' => 'FQCN', 'arguments' => ['key' => 'value']], ...]
2525
*/
2626
public function getAttributes(string $class, string $property, array $context = []): ?array;
2727
}

0 commit comments

Comments
 (0)