@@ -33,8 +33,8 @@ |
||
33 | 33 | { |
34 | 34 | private array $pageDataPropertiesChanged = []; |
35 | 35 | private PropertyAccessor $propertyAccessor; |
36 | - private ObjectRepository|EntityRepository $collectionRepository; |
|
37 | - private ObjectRepository|EntityRepository $positionRepository; |
|
36 | + private ObjectRepository | EntityRepository $collectionRepository; |
|
37 | + private ObjectRepository | EntityRepository $positionRepository; |
|
38 | 38 | |
39 | 39 | public function __construct( |
40 | 40 | private readonly IriConverterInterface $iriConverter, |
@@ -33,7 +33,7 @@ |
||
33 | 33 | private readonly HubInterface $hub, |
34 | 34 | private readonly IriConverterInterface $iriConverter, |
35 | 35 | private readonly ResourceMetadataCollectionFactoryInterface $resourceMetadataCollectionFactory |
36 | - ){} |
|
36 | + ) {} |
|
37 | 37 | |
38 | 38 | public function collectResource($entity): void |
39 | 39 | { |
@@ -44,7 +44,7 @@ |
||
44 | 44 | $resourceClass = $this->resourceClassResolver->getResourceClass($entity); |
45 | 45 | $resourceIri = $this->iriConverter->getIriFromResource($resourceClass, UrlGeneratorInterface::ABS_PATH, (new GetCollection())->withClass($resourceClass)); |
46 | 46 | $this->collectIri([$resourceIri]); |
47 | - } catch (OperationNotFoundException|InvalidArgumentException $e) { |
|
47 | + } catch (OperationNotFoundException | InvalidArgumentException $e) { |
|
48 | 48 | } |
49 | 49 | } |
50 | 50 |