Skip to content

Commit 8a6e123

Browse files
committed
Fixed indentation
1 parent a7cee5b commit 8a6e123

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/PhpDocReader/PhpDocReader.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,21 @@ class PhpDocReader
3232
'resource',
3333
);
3434

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-
*/
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+
*/
4646
public function __construct($ignorePhpDocErrors = false)
4747
{
4848
$this->phpParser = new PhpParser();
49-
$this->ignorePhpDocErrors = $ignorePhpDocErrors;
49+
$this->ignorePhpDocErrors = $ignorePhpDocErrors;
5050
}
5151

5252
/**

0 commit comments

Comments
 (0)