File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -2337,22 +2337,26 @@ public function createExporter(mixed $config): ElementExporterInterface
2337
2337
*/
2338
2338
public function getElementTypeByRefHandle (string $ refHandle ): ?string
2339
2339
{
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 ) ;
2342
2342
}
2343
+ return $ this ->_elementTypesByRefHandle [$ refHandle ] ?: null ;
2344
+ }
2343
2345
2346
+ private function elementTypeByRefHandle (string $ refHandle ): string |false
2347
+ {
2344
2348
foreach ($ this ->getAllElementTypes () as $ class ) {
2345
2349
/** @var string|ElementInterface $class */
2346
2350
/** @phpstan-var class-string<ElementInterface>|ElementInterface $class */
2347
2351
if (
2348
2352
($ elementRefHandle = $ class ::refHandle ()) !== null &&
2349
2353
strcasecmp ($ elementRefHandle , $ refHandle ) === 0
2350
2354
) {
2351
- return $ this -> _elementTypesByRefHandle [ $ refHandle ] = $ class ;
2355
+ return $ class ;
2352
2356
}
2353
2357
}
2354
2358
2355
- return $ this -> _elementTypesByRefHandle [ $ refHandle ] = null ;
2359
+ return false ;
2356
2360
}
2357
2361
2358
2362
/**
You can’t perform that action at this time.
0 commit comments