We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5d6d4be + 3185942 commit e31579eCopy full SHA for e31579e
system/View/Cell.php
@@ -175,9 +175,9 @@ protected function determineClass(string $library): array
175
}
176
177
// locate and return an instance of the cell
178
- $class = Factories::cells($class);
+ $object = Factories::cells($class);
179
180
- if (! is_object($class)) {
+ if (! is_object($object)) {
181
throw ViewException::forInvalidCellClass($class);
182
183
@@ -186,7 +186,7 @@ protected function determineClass(string $library): array
186
187
188
return [
189
- $class,
+ $object,
190
$method,
191
];
192
0 commit comments