Skip to content

Commit

Permalink
Fix typos in type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenDeDauw committed Jan 12, 2015
1 parent 7bc6dde commit b5a04ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/php/PHPMD/Parser.php
Expand Up @@ -166,7 +166,7 @@ public function log(Analyzer $analyzer)
* Closes the logger process and writes the output file.
*
* @return void
* @throws PDepend\Report\NoLogOutputException If the no log target exists.
* @throws \PDepend\Report\NoLogOutputException If the no log target exists.
*/
public function close()
{
Expand Down
2 changes: 1 addition & 1 deletion src/main/php/PHPMD/Report.php
Expand Up @@ -54,7 +54,7 @@ class Report
/**
* List of rule violations detected in the analyzed source code.
*
* @var \PHPMD\RuleViolations[]
* @var \PHPMD\RuleViolation[]
*/
private $ruleViolations = array();

Expand Down
2 changes: 1 addition & 1 deletion src/test/php/PHPMD/ParserTest.php
Expand Up @@ -181,7 +181,7 @@ private function getPHPDependMock()
/**
* Creates a mocked PDepend class instance.
*
* @return PDepend\Source\AST\ASTClass
* @return \PDepend\Source\AST\ASTClass
*/
protected function getPHPDependClassMock()
{
Expand Down

0 comments on commit b5a04ce

Please sign in to comment.