You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- '#Property Prooph\\Bundle\\EventStore\\Command\\AbstractProjectionCommand::\$projectionName \(string\) does not accept array<string>\|string\|null\.#'
@@ -18,4 +21,5 @@ parameters:
18
21
# MariaDbEventStore is available since pdo-event-store v1.3
19
22
- '#Class Prooph\\EventStore\\Pdo\\MariaDbEventStore not found\.#'
20
23
- '#Method Prooph\\Bundle\\EventStore\\ProjectionManagerFactory::createProjectionManager\(\) should return Prooph\\EventStore\\Projection\\ProjectionManager but returns Prooph\\EventStore\\Pdo\\Projection\\MariaDbProjectionManager\.#'
21
-
- '#Instantiated class Prooph\\EventStore\\Pdo\\Projection\\MariaDbProjectionManager not found\.#'
24
+
- '#Instantiated class Prooph\\EventStore\\Pdo\\Projection\\MariaDbProjectionManager not found\.#'
25
+
- '#Parameter \#1 $argument of class ReflectionClass constructor expects class-string<T of object>\|T of object, string\|null given.#'
if (! $this->projectionManagerForProjectionsLocator->has($this->projectionName)) {
92
-
thrownewRuntimeException(\sprintf('ProjectionManager for "%s" not found', $this->projectionName));
92
+
thrownewRuntimeException(\vsprintf('ProjectionManager for "%s" not found', is_array($this->projectionName) ? $this->projectionName : [$this->projectionName]));
if ($this->projectioninstanceof ReadModelProjection) {
102
102
if (! $this->projectionReadModelLocator->has($this->projectionName)) {
103
-
thrownewRuntimeException(\sprintf('ReadModel for "%s" not found', $this->projectionName));
103
+
thrownewRuntimeException(\vsprintf('ReadModel for "%s" not found', is_array($this->projectionName) ? $this->projectionName : [$this->projectionName]));
0 commit comments