File tree 1 file changed +5
-5
lines changed
lib/Doctrine/Common/Persistence/Mapping/Driver
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
namespace Doctrine \Common \Persistence \Mapping \Driver ;
3
3
4
- use Doctrine \Common \Annotations \AnnotationReader ;
4
+ use Doctrine \Common \Annotations \Reader ;
5
5
use Doctrine \Common \Persistence \Mapping \MappingException ;
6
6
7
7
/**
16
16
abstract class AnnotationDriver implements MappingDriver
17
17
{
18
18
/**
19
- * The AnnotationReader .
19
+ * The annotation reader .
20
20
*
21
- * @var AnnotationReader
21
+ * @var Reader
22
22
*/
23
23
protected $ reader ;
24
24
@@ -61,7 +61,7 @@ abstract class AnnotationDriver implements MappingDriver
61
61
* Initializes a new AnnotationDriver that uses the given AnnotationReader for reading
62
62
* docblock annotations.
63
63
*
64
- * @param AnnotationReader $reader The AnnotationReader to use, duck-typed.
64
+ * @param Reader $reader The annotation Reader to use, duck-typed.
65
65
* @param string|array|null $paths One or multiple paths where mapping classes can be found.
66
66
*/
67
67
public function __construct ($ reader , $ paths = null )
@@ -117,7 +117,7 @@ public function getExcludePaths()
117
117
/**
118
118
* Retrieve the current annotation reader
119
119
*
120
- * @return AnnotationReader
120
+ * @return Reader
121
121
*/
122
122
public function getReader ()
123
123
{
You can’t perform that action at this time.
0 commit comments