Update AbstractHydrator.php
revert strict comparison in hydration (fails on some dates)
This commit is contained in:
parent
db9c12f1af
commit
8cc29e84a0
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ abstract class AbstractHydrator
|
||||||
if(
|
if(
|
||||||
isset($cacheKeyInfo['discriminatorColumn']) &&
|
isset($cacheKeyInfo['discriminatorColumn']) &&
|
||||||
isset($data[$cacheKeyInfo['discriminatorColumn']]) &&
|
isset($data[$cacheKeyInfo['discriminatorColumn']]) &&
|
||||||
$data[$cacheKeyInfo['discriminatorColumn']] !== $cacheKeyInfo['discriminatorValue']
|
$data[$cacheKeyInfo['discriminatorColumn']] != $cacheKeyInfo['discriminatorValue']
|
||||||
){
|
){
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue