Skip to content

Commit 4e4e091

Browse files
committed
Fixes tests
1 parent acdfa40 commit 4e4e091

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Database/Relations/DeferOneOrMany.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ public function withDeferredQuery($newQuery = null, $sessionKey = null)
6767
// Trick the relation to add constraints to this nested query
6868
if ($this->parent->exists) {
6969
$oldQuery = $this->query;
70-
$this->query = $query;
70+
$this->query->setQuery($query);
7171
$this->addConstraints();
72-
$this->query = $oldQuery;
72+
$this->query->setQuery($oldQuery);
7373
}
7474

7575
// Bind (Add)

src/Extension/ExtendableTrait.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -329,14 +329,14 @@ public function getClassMethods()
329329
*/
330330
public function getClassMethodAsReflector(string $name): ReflectionFunctionAbstract
331331
{
332-
$extandableMethod = $this->getExtendableMethodFromExtensions($name);
333-
if ($extandableMethod !== null) {
334-
return new ReflectionMethod($extandableMethod[0], $extandableMethod[1]);
332+
$extendableMethod = $this->getExtendableMethodFromExtensions($name);
333+
if ($extendableMethod !== null) {
334+
return new ReflectionMethod($extendableMethod[0], $extendableMethod[1]);
335335
}
336336

337-
$extandableDynamicMethod = $this->getExtendableMethodFromDynamicMethods($name);
338-
if ($extandableDynamicMethod !== null) {
339-
return new ReflectionFunction($extandableDynamicMethod);
337+
$extendableDynamicMethod = $this->getExtendableMethodFromDynamicMethods($name);
338+
if ($extendableDynamicMethod !== null) {
339+
return new ReflectionFunction($extendableDynamicMethod);
340340
}
341341

342342
return new ReflectionMethod($this, $name);

0 commit comments

Comments
 (0)