Skip to content

Commit

Permalink
[DCOM-2] Removed false from class_exists to allow autoloading of anno…
Browse files Browse the repository at this point in the history
…tations as required
  • Loading branch information
merk committed May 27, 2010
1 parent aa377bf commit 152fdec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/Common/Annotations/Parser.php
Expand Up @@ -248,7 +248,7 @@ public function Annotation()
( ! $this->_isNestedAnnotation && $this->_lexer->lookahead != null &&
! $this->_lexer->isNextToken(Lexer::T_OPEN_PARENTHESIS) &&
! $this->_lexer->isNextToken(Lexer::T_AT)) ||
! class_exists($name, false)
! class_exists($name)
) {
$this->_lexer->skipUntil(Lexer::T_AT);

Expand Down

0 comments on commit 152fdec

Please sign in to comment.