From 17cf41997e884432d7aed89ba29670dc3256a348 Mon Sep 17 00:00:00 2001 From: Sebastian Kurfuerst Date: Sat, 18 Mar 2023 08:23:25 +0100 Subject: [PATCH] fix remaining contentRepositoryIdentifier -> contentRepositoryId --- .../Classes/Factory/EventStore/DoctrineEventStoreFactory.php | 4 ++-- .../Classes/Factory/EventStore/EventStoreFactoryInterface.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Neos.ContentRepositoryRegistry/Classes/Factory/EventStore/DoctrineEventStoreFactory.php b/Neos.ContentRepositoryRegistry/Classes/Factory/EventStore/DoctrineEventStoreFactory.php index c73fc50e3c2..70494869c33 100644 --- a/Neos.ContentRepositoryRegistry/Classes/Factory/EventStore/DoctrineEventStoreFactory.php +++ b/Neos.ContentRepositoryRegistry/Classes/Factory/EventStore/DoctrineEventStoreFactory.php @@ -16,11 +16,11 @@ public function __construct( { } - public function build(ContentRepositoryId $contentRepositoryIdentifier, array $contentRepositorySettings, array $eventStorePreset): EventStoreInterface + public function build(ContentRepositoryId $contentRepositoryId , array $contentRepositorySettings, array $eventStorePreset): EventStoreInterface { return new DoctrineEventStore( $this->connection, - self::databaseTableName($contentRepositoryIdentifier) + self::databaseTableName($contentRepositoryId) ); } diff --git a/Neos.ContentRepositoryRegistry/Classes/Factory/EventStore/EventStoreFactoryInterface.php b/Neos.ContentRepositoryRegistry/Classes/Factory/EventStore/EventStoreFactoryInterface.php index 63b106d1584..4eba3caa7e3 100644 --- a/Neos.ContentRepositoryRegistry/Classes/Factory/EventStore/EventStoreFactoryInterface.php +++ b/Neos.ContentRepositoryRegistry/Classes/Factory/EventStore/EventStoreFactoryInterface.php @@ -7,5 +7,5 @@ interface EventStoreFactoryInterface { - public function build(ContentRepositoryId $contentRepositoryIdentifier, array $contentRepositorySettings, array $eventStorePreset): EventStoreInterface; + public function build(ContentRepositoryId $contentRepositoryId, array $contentRepositorySettings, array $eventStorePreset): EventStoreInterface; }