| @@ -9,17 +9,17 @@ | ||
| 9 | 9 | * Set error reporting to maximum | 
| 10 | 10 | */ | 
| 11 | 11 | error_reporting( -1 ); | 
| 12 | -ini_set( 'display_errors', '1' ); | |
| 12 | +ini_set('display_errors', '1'); | |
| 13 | 13 | |
| 14 | 14 | |
| 15 | 15 | /* | 
| 16 | 16 | * Set locale settings to reasonable defaults | 
| 17 | 17 | */ | 
| 18 | -setlocale( LC_ALL, 'en_US.UTF-8' ); | |
| 19 | -setlocale( LC_CTYPE, 'en_US.UTF-8' ); | |
| 20 | -setlocale( LC_NUMERIC, 'POSIX' ); | |
| 21 | -setlocale( LC_TIME, 'POSIX' ); | |
| 22 | -date_default_timezone_set( 'UTC' ); | |
| 18 | +setlocale(LC_ALL, 'en_US.UTF-8'); | |
| 19 | +setlocale(LC_CTYPE, 'en_US.UTF-8'); | |
| 20 | +setlocale(LC_NUMERIC, 'POSIX'); | |
| 21 | +setlocale(LC_TIME, 'POSIX'); | |
| 22 | +date_default_timezone_set('UTC'); | |
| 23 | 23 | |
| 24 | 24 | require_once 'TestHelper.php'; | 
| 25 | 25 | TestHelper::bootstrap(); | 
| @@ -16,23 +16,23 @@ | ||
| 16 | 16 | |
| 17 | 17 | protected function setUp() | 
| 18 | 18 |  	{ | 
| 19 | -		if( !class_exists( '\Zend\Diactoros\Response' ) ) { | |
| 20 | - $this->markTestSkipped( '\Zend\Diactoros\Response is not available' ); | |
| 19 | +		if (!class_exists('\Zend\Diactoros\Response')) { | |
| 20 | +			$this->markTestSkipped('\Zend\Diactoros\Response is not available'); | |
| 21 | 21 | } | 
| 22 | 22 | |
| 23 | 23 | $view = new \Aimeos\MW\View\Standard(); | 
| 24 | - $this->object = new \Aimeos\MW\View\Helper\Response\Flow( $view ); | |
| 24 | + $this->object = new \Aimeos\MW\View\Helper\Response\Flow($view); | |
| 25 | 25 | } | 
| 26 | 26 | |
| 27 | 27 | |
| 28 | 28 | protected function tearDown() | 
| 29 | 29 |  	{ | 
| 30 | - unset( $this->object ); | |
| 30 | + unset($this->object); | |
| 31 | 31 | } | 
| 32 | 32 | |
| 33 | 33 | |
| 34 | 34 | public function testTransform() | 
| 35 | 35 |  	{ | 
| 36 | - $this->assertInstanceOf( '\Aimeos\MW\View\Helper\Response\Flow', $this->object->transform() ); | |
| 36 | +		$this->assertInstanceOf('\Aimeos\MW\View\Helper\Response\Flow', $this->object->transform()); | |
| 37 | 37 | } | 
| 38 | 38 | } | 
| @@ -26,8 +26,8 @@ | ||
| 26 | 26 | * | 
| 27 | 27 | * @param \Aimeos\MW\View\Iface $view View instance with registered view helpers | 
| 28 | 28 | */ | 
| 29 | - public function __construct( \Aimeos\MW\View\Iface $view ) | |
| 29 | + public function __construct(\Aimeos\MW\View\Iface $view) | |
| 30 | 30 |  	{ | 
| 31 | - parent::__construct( $view, new \Zend\Diactoros\Response() ); | |
| 31 | + parent::__construct($view, new \Zend\Diactoros\Response()); | |
| 32 | 32 | } | 
| 33 | 33 | } | 
| @@ -31,7 +31,7 @@ | ||
| 31 | 31 | /** | 
| 32 | 32 | * Initializes the request view helper. | 
| 33 | 33 | * | 
| 34 | - * @param \\Aimeos\MW\View\Iface $view View instance with registered view helpers | |
| 34 | + * @param \Aimeos\MW\View\Iface $view View instance with registered view helpers | |
| 35 | 35 | * @param \Neos\Flow\Http\Request $request Flow request object | 
| 36 | 36 | * @param array $files List of uploaded files like in $_FILES | 
| 37 | 37 | * @param array $query List of uploaded files like in $_GET | 
| @@ -39,13 +39,13 @@ discard block | ||
| 39 | 39 | * @param array $cookies List of uploaded files like in $_COOKIES | 
| 40 | 40 | * @param array $server List of uploaded files like in $_SERVER | 
| 41 | 41 | */ | 
| 42 | - public function __construct( \Aimeos\MW\View\Iface $view, \Neos\Flow\Http\Request $request, array $files = [], | |
| 43 | - array $query = [], array $post = [], array $cookies = [], array $server = [] ) | |
| 42 | + public function __construct(\Aimeos\MW\View\Iface $view, \Neos\Flow\Http\Request $request, array $files = [], | |
| 43 | + array $query = [], array $post = [], array $cookies = [], array $server = []) | |
| 44 | 44 |  	{ | 
| 45 | 45 | $this->request = $request; | 
| 46 | - $psr7request = $this->createRequest( $request, $files, $query, $post, $cookies, $server ); | |
| 46 | + $psr7request = $this->createRequest($request, $files, $query, $post, $cookies, $server); | |
| 47 | 47 | |
| 48 | - parent::__construct( $view, $psr7request ); | |
| 48 | + parent::__construct($view, $psr7request); | |
| 49 | 49 | } | 
| 50 | 50 | |
| 51 | 51 | |
| @@ -82,18 +82,18 @@ discard block | ||
| 82 | 82 | * @param array $server List of uploaded files like in $_SERVER | 
| 83 | 83 | * @return \Psr\Http\Message\ServerRequestInterface PSR-7 request object | 
| 84 | 84 | */ | 
| 85 | - protected function createRequest( \Neos\Flow\Http\Request $nativeRequest, array $files, | |
| 86 | - array $query, array $post, array $cookies, array $server ) | |
| 85 | + protected function createRequest(\Neos\Flow\Http\Request $nativeRequest, array $files, | |
| 86 | + array $query, array $post, array $cookies, array $server) | |
| 87 | 87 |  	{ | 
| 88 | - $server = ServerRequestFactory::normalizeServer( $server ); | |
| 89 | - $files = ServerRequestFactory::normalizeFiles( $files ); | |
| 88 | + $server = ServerRequestFactory::normalizeServer($server); | |
| 89 | + $files = ServerRequestFactory::normalizeFiles($files); | |
| 90 | 90 | $headers = $nativeRequest->getHeaders()->getAll(); | 
| 91 | 91 | $uri = (string) $nativeRequest->getUri(); | 
| 92 | 92 | $method = $nativeRequest->getMethod(); | 
| 93 | 93 | |
| 94 | 94 |  		$body = new Stream('php://temp', 'wb+'); | 
| 95 | - $body->write( $nativeRequest->getContent() ); | |
| 95 | + $body->write($nativeRequest->getContent()); | |
| 96 | 96 | |
| 97 | - return new ServerRequest( $server, $files, $uri, $method, $body, $headers, $cookies, $query, $post ); | |
| 97 | + return new ServerRequest($server, $files, $uri, $method, $body, $headers, $cookies, $query, $post); | |
| 98 | 98 | } | 
| 99 | 99 | } | 
| @@ -25,14 +25,14 @@ discard block | ||
| 25 | 25 | */ | 
| 26 | 26 | protected function setUp() | 
| 27 | 27 |  	{ | 
| 28 | -		if( class_exists( '\\Neos\\Flow\\Session\\Session' ) === false ) { | |
| 29 | - $this->markTestSkipped( 'Class \\Neos\\Flow\\Session\\Session not found' ); | |
| 28 | +		if (class_exists('\\Neos\\Flow\\Session\\Session') === false) { | |
| 29 | +			$this->markTestSkipped('Class \\Neos\\Flow\\Session\\Session not found'); | |
| 30 | 30 | } | 
| 31 | 31 | |
| 32 | 32 | $session = new \Neos\Flow\Session\TransientSession(); | 
| 33 | 33 | $session->start(); | 
| 34 | 34 | |
| 35 | - $this->object = new \Aimeos\MW\Session\Flow( $session ); | |
| 35 | + $this->object = new \Aimeos\MW\Session\Flow($session); | |
| 36 | 36 | } | 
| 37 | 37 | |
| 38 | 38 | |
| @@ -44,26 +44,26 @@ discard block | ||
| 44 | 44 | */ | 
| 45 | 45 | protected function tearDown() | 
| 46 | 46 |  	{ | 
| 47 | - unset( $this->object ); | |
| 47 | + unset($this->object); | |
| 48 | 48 | } | 
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | public function testGetDefault() | 
| 52 | 52 |  	{ | 
| 53 | - $this->assertEquals( null, $this->object->get( 'notexist' ) ); | |
| 53 | +		$this->assertEquals(null, $this->object->get('notexist')); | |
| 54 | 54 | } | 
| 55 | 55 | |
| 56 | 56 | |
| 57 | 57 | public function testGetSet() | 
| 58 | 58 |  	{ | 
| 59 | - $this->object->set( 'key', 'value' ); | |
| 60 | - $this->assertEquals( 'value', $this->object->get( 'key' ) ); | |
| 59 | +		$this->object->set('key', 'value'); | |
| 60 | +		$this->assertEquals('value', $this->object->get('key')); | |
| 61 | 61 | } | 
| 62 | 62 | |
| 63 | 63 | |
| 64 | 64 | public function testGetSetArray() | 
| 65 | 65 |  	{ | 
| 66 | - $this->object->set( 'key', array( 'value' ) ); | |
| 67 | - $this->assertEquals( array( 'value' ), $this->object->get( 'key' ) ); | |
| 66 | +		$this->object->set('key', array('value')); | |
| 67 | +		$this->assertEquals(array('value'), $this->object->get('key')); | |
| 68 | 68 | } | 
| 69 | 69 | } | 
| @@ -28,7 +28,7 @@ discard block | ||
| 28 | 28 | * | 
| 29 | 29 | * @param \Neos\Flow\Session\SessionInterface $object Flow session object | 
| 30 | 30 | */ | 
| 31 | - public function __construct( \Neos\Flow\Session\SessionInterface $object ) | |
| 31 | + public function __construct(\Neos\Flow\Session\SessionInterface $object) | |
| 32 | 32 |  	{ | 
| 33 | 33 | $this->object = $object; | 
| 34 | 34 | } | 
| @@ -43,13 +43,13 @@ discard block | ||
| 43 | 43 | * @param mixed $default Value returned if requested key isn't found | 
| 44 | 44 | * @return mixed Value associated to the requested key | 
| 45 | 45 | */ | 
| 46 | - public function get( $name, $default = null ) | |
| 46 | + public function get($name, $default = null) | |
| 47 | 47 |  	{ | 
| 48 | -		if( $this->object->hasKey( $name ) !== true ) { | |
| 48 | +		if ($this->object->hasKey($name) !== true) { | |
| 49 | 49 | return $default; | 
| 50 | 50 | } | 
| 51 | 51 | |
| 52 | - return $this->object->getData( $name ); | |
| 52 | + return $this->object->getData($name); | |
| 53 | 53 | } | 
| 54 | 54 | |
| 55 | 55 | |
| @@ -62,8 +62,8 @@ discard block | ||
| 62 | 62 | * @param mixed $value Value that should be associated with the given key | 
| 63 | 63 | * @return void | 
| 64 | 64 | */ | 
| 65 | - public function set( $name, $value ) | |
| 65 | + public function set($name, $value) | |
| 66 | 66 |  	{ | 
| 67 | - $this->object->putData( $name, $value ); | |
| 67 | + $this->object->putData($name, $value); | |
| 68 | 68 | } | 
| 69 | 69 | } | 
| @@ -32,7 +32,7 @@ discard block | ||
| 32 | 32 | * @param \Aimeos\MShop\Context\Item\Iface $context MShop context object | 
| 33 | 33 | * @param \Neos\Cache\Frontend\StringFrontend $cache Flow cache object | 
| 34 | 34 | */ | 
| 35 | - public function __construct( \Aimeos\MShop\Context\Item\Iface $context, \Neos\Cache\Frontend\StringFrontend $cache ) | |
| 35 | + public function __construct(\Aimeos\MShop\Context\Item\Iface $context, \Neos\Cache\Frontend\StringFrontend $cache) | |
| 36 | 36 |  	{ | 
| 37 | 37 | $this->context = $context; | 
| 38 | 38 | $this->cache = $cache; | 
| @@ -46,11 +46,11 @@ discard block | ||
| 46 | 46 | */ | 
| 47 | 47 | protected function getObject() | 
| 48 | 48 |  	{ | 
| 49 | - if( !isset( $this->object ) ) | |
| 49 | + if (!isset($this->object)) | |
| 50 | 50 |  		{ | 
| 51 | 51 | $siteid = $this->context->getLocale()->getSiteId(); | 
| 52 | - $conf = array( 'siteid' => $this->context->getConfig()->get( 'madmin/cache/prefix' ) . $siteid ); | |
| 53 | - $this->object = \Aimeos\MW\Cache\Factory::createManager( 'Flow', $conf, $this->cache ); | |
| 52 | +			$conf = array('siteid' => $this->context->getConfig()->get('madmin/cache/prefix').$siteid); | |
| 53 | +			$this->object = \Aimeos\MW\Cache\Factory::createManager('Flow', $conf, $this->cache); | |
| 54 | 54 | } | 
| 55 | 55 | |
| 56 | 56 | return $this->object; | 
| @@ -17,38 +17,38 @@ | ||
| 17 | 17 | |
| 18 | 18 | protected function setUp() | 
| 19 | 19 |  	{ | 
| 20 | -		if( class_exists( 'Neos\Cache\Frontend\StringFrontend' ) === false ) { | |
| 21 | - $this->markTestSkipped( 'Class \\Neos\\Cache\\Frontend\\StringFrontend not found' ); | |
| 20 | +		if (class_exists('Neos\Cache\Frontend\StringFrontend') === false) { | |
| 21 | +			$this->markTestSkipped('Class \\Neos\\Cache\\Frontend\\StringFrontend not found'); | |
| 22 | 22 | } | 
| 23 | 23 | |
| 24 | - $localeItem = $this->getMockBuilder( '\Aimeos\MShop\Locale\Item\Standard' ) | |
| 25 | - ->setMethods( ['getSiteId']) | |
| 24 | +		$localeItem = $this->getMockBuilder('\Aimeos\MShop\Locale\Item\Standard') | |
| 25 | + ->setMethods(['getSiteId']) | |
| 26 | 26 | ->getMock(); | 
| 27 | 27 | |
| 28 | - $this->mock = $this->getMockBuilder( 'Neos\Cache\Frontend\StringFrontend' ) | |
| 28 | +		$this->mock = $this->getMockBuilder('Neos\Cache\Frontend\StringFrontend') | |
| 29 | 29 | ->disableOriginalConstructor() | 
| 30 | 30 | ->getMock(); | 
| 31 | 31 | |
| 32 | 32 | $context = \TestHelper::getContext(); | 
| 33 | - $context->setLocale( $localeItem ); | |
| 33 | + $context->setLocale($localeItem); | |
| 34 | 34 | |
| 35 | - $this->object = new \Aimeos\MAdmin\Cache\Proxy\Flow( $context, $this->mock ); | |
| 35 | + $this->object = new \Aimeos\MAdmin\Cache\Proxy\Flow($context, $this->mock); | |
| 36 | 36 | } | 
| 37 | 37 | |
| 38 | 38 | |
| 39 | 39 | protected function tearDown() | 
| 40 | 40 |  	{ | 
| 41 | - unset( $this->mock, $this->object ); | |
| 41 | + unset($this->mock, $this->object); | |
| 42 | 42 | } | 
| 43 | 43 | |
| 44 | 44 | |
| 45 | 45 | public function testGetObject() | 
| 46 | 46 |  	{ | 
| 47 | - $class = new \ReflectionClass( '\Aimeos\MAdmin\Cache\Proxy\Flow' ); | |
| 48 | - $method = $class->getMethod( 'getObject' ); | |
| 49 | - $method->setAccessible( true ); | |
| 47 | +		$class = new \ReflectionClass('\Aimeos\MAdmin\Cache\Proxy\Flow'); | |
| 48 | +		$method = $class->getMethod('getObject'); | |
| 49 | + $method->setAccessible(true); | |
| 50 | 50 | |
| 51 | - $result = $method->invokeArgs( $this->object, [] ); | |
| 52 | - $this->assertInstanceOf( '\Aimeos\MW\Cache\Iface', $result ); | |
| 51 | + $result = $method->invokeArgs($this->object, []); | |
| 52 | +		$this->assertInstanceOf('\Aimeos\MW\Cache\Iface', $result); | |
| 53 | 53 | } | 
| 54 | 54 | } | 
| @@ -27,7 +27,7 @@ discard block | ||
| 27 | 27 | * | 
| 28 | 28 | * @param \Neos\FluidAdaptor\View\StandaloneView $view Flow template view object | 
| 29 | 29 | */ | 
| 30 | - public function __construct( \Neos\FluidAdaptor\View\StandaloneView $view ) | |
| 30 | + public function __construct(\Neos\FluidAdaptor\View\StandaloneView $view) | |
| 31 | 31 |  	{ | 
| 32 | 32 | $this->view = $view; | 
| 33 | 33 | } | 
| @@ -42,13 +42,13 @@ discard block | ||
| 42 | 42 | * @return string Output generated by the template | 
| 43 | 43 | * @throws \Aimeos\MW\View\Exception If the template isn't found | 
| 44 | 44 | */ | 
| 45 | - public function render( \Aimeos\MW\View\Iface $view, $filename, array $values ) | |
| 45 | + public function render(\Aimeos\MW\View\Iface $view, $filename, array $values) | |
| 46 | 46 |  	{ | 
| 47 | 47 | $fluid = clone $this->view; | 
| 48 | 48 | |
| 49 | - $fluid->setTemplatePathAndFilename( $filename ); | |
| 50 | - $fluid->assign( '_aimeos_view', $view ); | |
| 51 | - $fluid->assignMultiple( $values ); | |
| 49 | + $fluid->setTemplatePathAndFilename($filename); | |
| 50 | +		$fluid->assign('_aimeos_view', $view); | |
| 51 | + $fluid->assignMultiple($values); | |
| 52 | 52 | |
| 53 | 53 | return $fluid->render(); | 
| 54 | 54 | } |