Skip to content

Commit

Permalink
fix remaining contentRepositoryIdentifier -> contentRepositoryId
Browse files Browse the repository at this point in the history
  • Loading branch information
skurfuerst committed Mar 18, 2023
1 parent 397d438 commit 17cf419
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 17cf419

Please sign in to comment.