Skip to content

Commit

Permalink
Merge pull request #277 from fullbl/master
Browse files Browse the repository at this point in the history
added backslash to phpDoc for BadMethodCallException
  • Loading branch information
alcaeus committed Dec 5, 2017
2 parents ca72b24 + 09d0390 commit b0ab344
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Doctrine/Common/DataFixtures/AbstractFixture.php
Expand Up @@ -69,7 +69,7 @@ public function setReference($name, $object)
* @param string $name
* @param object $object - managed object
* @see Doctrine\Common\DataFixtures\ReferenceRepository::addReference
* @throws BadMethodCallException - if repository already has
* @throws \BadMethodCallException - if repository already has
* a reference by $name
* @return void
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/Doctrine/Common/DataFixtures/ReferenceRepository.php
Expand Up @@ -137,7 +137,7 @@ public function setReferenceIdentity($name, $identity)
*
* @param string $name
* @param object $object - managed object
* @throws BadMethodCallException - if repository already has
* @throws \BadMethodCallException - if repository already has
* a reference by $name
* @return void
*/
Expand All @@ -154,7 +154,7 @@ public function addReference($name, $object)
* named by $name
*
* @param string $name
* @throws OutOfBoundsException - if repository does not exist
* @throws \OutOfBoundsException - if repository does not exist
* @return object
*/
public function getReference($name)
Expand Down

0 comments on commit b0ab344

Please sign in to comment.