Skip to content

Commit 3103f11

Browse files
committed
getElementTypeByRefHandle() cleanup
1 parent 04ceb8a commit 3103f11

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/services/Elements.php

+8-4
Original file line numberDiff line numberDiff line change
@@ -2337,22 +2337,26 @@ public function createExporter(mixed $config): ElementExporterInterface
23372337
*/
23382338
public function getElementTypeByRefHandle(string $refHandle): ?string
23392339
{
2340-
if (array_key_exists($refHandle, $this->_elementTypesByRefHandle)) {
2341-
return $this->_elementTypesByRefHandle[$refHandle];
2340+
if (!isset($this->_elementTypesByRefHandle[$refHandle])) {
2341+
$this->_elementTypesByRefHandle[$refHandle] = $this->elementTypeByRefHandle($refHandle);
23422342
}
2343+
return $this->_elementTypesByRefHandle[$refHandle] ?: null;
2344+
}
23432345

2346+
private function elementTypeByRefHandle(string $refHandle): string|false
2347+
{
23442348
foreach ($this->getAllElementTypes() as $class) {
23452349
/** @var string|ElementInterface $class */
23462350
/** @phpstan-var class-string<ElementInterface>|ElementInterface $class */
23472351
if (
23482352
($elementRefHandle = $class::refHandle()) !== null &&
23492353
strcasecmp($elementRefHandle, $refHandle) === 0
23502354
) {
2351-
return $this->_elementTypesByRefHandle[$refHandle] = $class;
2355+
return $class;
23522356
}
23532357
}
23542358

2355-
return $this->_elementTypesByRefHandle[$refHandle] = null;
2359+
return false;
23562360
}
23572361

23582362
/**

0 commit comments

Comments
 (0)