Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
Fixed initializing objects
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Feb 15, 2016
1 parent 4a0d68d commit 90e4125
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/custom/src/MW/View/Helper/Request/Flow.php
Expand Up @@ -45,7 +45,7 @@ public function __construct( \Aimeos\MW\View\Iface $view, \TYPO3\Flow\Http\Reque
$this->request = $request;
$psr7request = $this->createRequest( $request, $files, $query, $post, $cookies, $server );

\Aimeos\MW\View\Helper\Base::__construct( $view, $psr7request );
parent::__construct( $view, $psr7request );
}


Expand Down
2 changes: 1 addition & 1 deletion lib/custom/src/MW/View/Helper/Response/Flow.php
Expand Up @@ -28,6 +28,6 @@ class Flow
*/
public function __construct( \Aimeos\MW\View\Iface $view )
{
\Aimeos\MW\View\Helper\Base::__construct( $view, new \Zend\Diactoros\Response() );
parent::__construct( $view, new \Zend\Diactoros\Response() );
}
}

0 comments on commit 90e4125

Please sign in to comment.