We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e402b commit 450cabbCopy full SHA for 450cabb
src/Symfony/Component/PropertyInfo/PropertyAttributesExtractorInterface.php
@@ -11,6 +11,9 @@
11
12
namespace Symfony\Component\PropertyInfo;
13
14
+/**
15
+ * @author Andrew Alyamovsky <andrew.alyamovsky@gmail.com>
16
+ */
17
interface PropertyAttributesExtractorInterface
18
{
19
/**
@@ -19,9 +22,6 @@ interface PropertyAttributesExtractorInterface
22
* Returns an array of attributes, each attribute is an associative array with the following keys:
20
23
* - name: The fully-qualified class name of the attribute
21
24
* - arguments: An associative array of attribute arguments
- *
- * Example:
- * [['name' => 'FQCN', 'arguments' => ['key' => 'value']], ...]
25
*/
26
public function getAttributes(string $class, string $property, array $context = []): ?array;
27
}
0 commit comments