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

Commit

Permalink
Use new Neos\FluidAdaptor namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Mar 9, 2017
1 parent 179136d commit c23b758
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/custom/src/MW/View/Engine/Flow.php
Expand Up @@ -25,9 +25,9 @@ class Flow implements Iface
/**
* Initializes the view object
*
* @param \Neos\Fluid\View\StandaloneView $view Flow template view object
* @param \Neos\FluidAdaptor\View\StandaloneView $view Flow template view object
*/
public function __construct( \Neos\Fluid\View\StandaloneView $view )
public function __construct( \Neos\FluidAdaptor\View\StandaloneView $view )
{
$this->view = $view;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/custom/tests/MW/View/Engine/FlowTest.php
Expand Up @@ -16,7 +16,7 @@ class Typo3Test extends \PHPUnit_Framework_TestCase

protected function setUp()
{
$this->mock = $this->getMockBuilder( '\Neos\Fluid\View\StandaloneView' )
$this->mock = $this->getMockBuilder( '\Neos\FluidAdaptor\View\StandaloneView' )
->setMethods( array( 'assign', 'assignMultiple', 'render', 'setTemplatePathAndFilename' ) )
->disableOriginalConstructor()
->getMock();
Expand Down

0 comments on commit c23b758

Please sign in to comment.