We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beb759e commit 071e445Copy full SHA for 071e445
CHANGELOG.md
@@ -13,7 +13,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
13
- Nothing
14
15
### Fixed
16
-- Nothing
+- Fixed typo in config with caused undefined `pipelines` option
17
18
### Removed
19
src/Module/ZendExpressive.php
@@ -62,7 +62,7 @@ public function _initialize() : void
62
$app = $this->container->get('Zend\Expressive\Application');
63
$factory = $this->container->get(\Zend\Expressive\MiddlewareFactory::class);
64
65
- $pipelineFile = $projectDir . $this->config['pipelines'];
+ $pipelineFile = $projectDir . $this->config['pipeline'];
66
if (file_exists($pipelineFile)) {
67
(require $pipelineFile)($app, $factory, $this->container);
68
}
0 commit comments