We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7cee5b commit 8a6e123Copy full SHA for 8a6e123
src/PhpDocReader/PhpDocReader.php
@@ -32,21 +32,21 @@ class PhpDocReader
32
'resource',
33
);
34
35
- /**
36
- * Enable or disable throwing errors when PhpDoc Errors occur (when parsing annotations)
37
- *
38
- * @var bool
39
- */
40
- private $ignorePhpDocErrors;
41
-
42
43
44
- * @param bool $ignorePhpDocErrors
45
+ /**
+ * Enable or disable throwing errors when PhpDoc Errors occur (when parsing annotations)
+ *
+ * @var bool
+ */
+ private $ignorePhpDocErrors;
+
+ * @param bool $ignorePhpDocErrors
46
public function __construct($ignorePhpDocErrors = false)
47
{
48
$this->phpParser = new PhpParser();
49
- $this->ignorePhpDocErrors = $ignorePhpDocErrors;
+ $this->ignorePhpDocErrors = $ignorePhpDocErrors;
50
}
51
52
/**
0 commit comments