Compare commits
No commits in common. "c1755d250be524bbad1b6751e94531bb72817d32" and "2e377374d4491a39ed3c3a1ac0aea56b8bab7423" have entirely different histories.
c1755d250b
...
2e377374d4
@ -196,9 +196,9 @@ trait EntityTrait {
|
||||
}
|
||||
|
||||
#[Ignore]
|
||||
public function toArray($includeRelations = false, array $filterFields = null, bool $rewriteValue = true) : array
|
||||
public function toArray($includeRelations = false, array $filterFields = null) : array
|
||||
{
|
||||
$dataset = $this->entityGetDataset($includeRelations, false, $rewriteValue);
|
||||
$dataset = $this->entityGetDataset($includeRelations, false, false);
|
||||
|
||||
return $filterFields ? array_intersect_key($dataset, array_flip($filterFields)) : $dataset;
|
||||
}
|
||||
|
@ -528,7 +528,6 @@ class QueryBuilder implements Query\QueryBuilderInterface
|
||||
{
|
||||
$this->values = $values;
|
||||
}
|
||||
|
||||
protected function nextJoinOrder() : float
|
||||
{
|
||||
$next = 0;
|
||||
|
@ -450,6 +450,7 @@ class Repository
|
||||
public function values(array $dataset) : self
|
||||
{
|
||||
$this->queryBuilder->values($dataset);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
@ -130,7 +130,7 @@ class RelationBuilder
|
||||
|
||||
$this->entity->eventExecute(Event\EntityRelationLoadInterface::class, $name, $this->repository);
|
||||
|
||||
$results = call_user_func([ $this->repository, 'loadAll' /*$relationRelation->function()*/ ]);
|
||||
$results = call_user_func([ $this->repository, $relationRelation->function() ]);
|
||||
|
||||
if ($relation->bridgeField ?? false) {
|
||||
$collection = $relation->bridge::entityCollection();
|
||||
|
Loading…
x
Reference in New Issue
Block a user