Skip to content

Commit 071e445

Browse files
committed
Fixed typo in config with caused undefined option
1 parent beb759e commit 071e445

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
1313
- Nothing
1414

1515
### Fixed
16-
- Nothing
16+
- Fixed typo in config with caused undefined `pipelines` option
1717

1818
### Removed
1919
- Nothing

Diff for: src/Module/ZendExpressive.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function _initialize() : void
6262
$app = $this->container->get('Zend\Expressive\Application');
6363
$factory = $this->container->get(\Zend\Expressive\MiddlewareFactory::class);
6464

65-
$pipelineFile = $projectDir . $this->config['pipelines'];
65+
$pipelineFile = $projectDir . $this->config['pipeline'];
6666
if (file_exists($pipelineFile)) {
6767
(require $pipelineFile)($app, $factory, $this->container);
6868
}

0 commit comments

Comments
 (0)