[DDC-1668] Fix problem with the is_int fowards compatibility check. Its not really necesssary anymore, we should remove this code in the future.
This commit is contained in:
parent
9cddaf3075
commit
794b4ef09c
1 changed files with 3 additions and 6 deletions
|
@ -142,8 +142,7 @@ class AnnotationDriver implements Driver
|
||||||
|
|
||||||
$classAnnotations = $this->_reader->getClassAnnotations($class);
|
$classAnnotations = $this->_reader->getClassAnnotations($class);
|
||||||
|
|
||||||
// Compatibility with Doctrine Common 3.x
|
if ($classAnnotations && is_numeric(key($classAnnotations))) {
|
||||||
if ($classAnnotations && is_int(key($classAnnotations))) {
|
|
||||||
foreach ($classAnnotations as $annot) {
|
foreach ($classAnnotations as $annot) {
|
||||||
$classAnnotations[get_class($annot)] = $annot;
|
$classAnnotations[get_class($annot)] = $annot;
|
||||||
}
|
}
|
||||||
|
@ -438,8 +437,7 @@ class AnnotationDriver implements Driver
|
||||||
if ($method->isPublic() && $method->getDeclaringClass()->getName() == $class->name) {
|
if ($method->isPublic() && $method->getDeclaringClass()->getName() == $class->name) {
|
||||||
$annotations = $this->_reader->getMethodAnnotations($method);
|
$annotations = $this->_reader->getMethodAnnotations($method);
|
||||||
|
|
||||||
// Compatibility with Doctrine Common 3.x
|
if ($annotations && is_numeric(key($annotations))) {
|
||||||
if ($annotations && is_int(key($annotations))) {
|
|
||||||
foreach ($annotations as $annot) {
|
foreach ($annotations as $annot) {
|
||||||
$annotations[get_class($annot)] = $annot;
|
$annotations[get_class($annot)] = $annot;
|
||||||
}
|
}
|
||||||
|
@ -494,8 +492,7 @@ class AnnotationDriver implements Driver
|
||||||
{
|
{
|
||||||
$classAnnotations = $this->_reader->getClassAnnotations(new \ReflectionClass($className));
|
$classAnnotations = $this->_reader->getClassAnnotations(new \ReflectionClass($className));
|
||||||
|
|
||||||
// Compatibility with Doctrine Common 3.x
|
if ($classAnnotations && is_numeric(key($classAnnotations))) {
|
||||||
if ($classAnnotations && is_int(key($classAnnotations))) {
|
|
||||||
foreach ($classAnnotations as $annot) {
|
foreach ($classAnnotations as $annot) {
|
||||||
if ($annot instanceof \Doctrine\ORM\Mapping\Entity) {
|
if ($annot instanceof \Doctrine\ORM\Mapping\Entity) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue