Skip to content

Commit d80a831

Browse files
authored
Stop recommending vendor-prefixed PHPDoc (doctrine#11640)
1 parent 5266029 commit d80a831

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/en/reference/metadata-drivers.rst

+4-5
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ implements the ``MappingDriver`` interface:
8181
/**
8282
* Loads the metadata for the specified class into the provided container.
8383
*
84-
* @psalm-param class-string<T> $className
85-
* @psalm-param ClassMetadata<T> $metadata
84+
* @param class-string<T> $className
85+
* @param ClassMetadata<T> $metadata
8686
*
8787
* @return void
8888
*
@@ -93,16 +93,15 @@ implements the ``MappingDriver`` interface:
9393
/**
9494
* Gets the names of all mapped classes known to this driver.
9595
*
96-
* @return array<int, string> The names of all mapped classes known to this driver.
97-
* @psalm-return list<class-string>
96+
* @return list<class-string> The names of all mapped classes known to this driver.
9897
*/
9998
public function getAllClassNames();
10099
101100
/**
102101
* Returns whether the class with the specified name should have its metadata loaded.
103102
* This is only the case if it is either mapped as an Entity or a MappedSuperclass.
104103
*
105-
* @psalm-param class-string $className
104+
* @param class-string $className
106105
*
107106
* @return bool
108107
*/

0 commit comments

Comments
 (0)