Skip to content

Commit ccd8825

Browse files
committed
Introduce new structure provider
1 parent 96ad799 commit ccd8825

File tree

1 file changed

+4
-22
lines changed

1 file changed

+4
-22
lines changed

src/Lodash/Testing/DataStructuresBuilder.php src/Lodash/Testing/DataStructuresProvider.php

+4-22
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,14 @@
1313
use function str_starts_with;
1414
use function trim;
1515

16-
abstract class DataStructuresBuilder
16+
abstract class DataStructuresProvider
1717
{
18-
/**
19-
* Caller object instance, where defined data structure getters like caller::getUserStructure()
20-
*/
21-
protected static object $caller;
22-
23-
public static function includeNestedRelations(object $caller, array &$item, array $relations): void
18+
protected static function includeNestedRelations(array &$item, array $relations): void
2419
{
2520
if (empty($relations)) {
2621
return;
2722
}
2823

29-
self::setCallerObject($caller);
30-
3124
foreach ($relations as $relation) {
3225
$parentRelations = explode('.', $relation);
3326
self::includeNestedRelation($item, $parentRelations);
@@ -71,22 +64,11 @@ protected static function includeNestedRelation(array &$item, array $parentRelat
7164

7265
protected static function getItemStructure(string $relationItem): array
7366
{
74-
$caller = self::getCallerObject();
7567
$method = 'get' . $relationItem . 'Structure';
76-
if (! is_callable([$caller, $method])) {
68+
if (! is_callable(['static', $method])) {
7769
throw new InvalidArgumentException('Getter method for structure "' . $relationItem . '" does not exists');
7870
}
7971

80-
return $caller->$method();
81-
}
82-
83-
protected static function setCallerObject(object $caller): void
84-
{
85-
self::$caller = $caller;
86-
}
87-
88-
protected static function getCallerObject(): object
89-
{
90-
return self::$caller;
72+
return static::$method();
9173
}
9274
}

0 commit comments

Comments
 (0)