Completed
Push — master ( 44244f...734c2f )
by Aimeos
02:09
created
Service/Page.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	 *
29 29
 	 * @param Container $container Container object to access parameters
30 30
 	 */
31
-	public function __construct( Container $container )
31
+	public function __construct(Container $container)
32 32
 	{
33 33
 		$this->container = $container;
34 34
 	}
@@ -40,23 +40,23 @@  discard block
 block discarded – undo
40 40
 	 * @param string $pageName Name of the configured page
41 41
 	 * @return array Associative list with body and header output separated by client name
42 42
 	 */
43
-	public function getSections( $pageName )
43
+	public function getSections($pageName)
44 44
 	{
45 45
 		$context = $this->container->get('aimeos_context')->get();
46
-		$pagesConfig = $this->container->getParameter( 'aimeos_shop.page' );
47
-		$result = array( 'aibody' => array(), 'aiheader' => array() );
46
+		$pagesConfig = $this->container->getParameter('aimeos_shop.page');
47
+		$result = array('aibody' => array(), 'aiheader' => array());
48 48
 
49 49
 		$langid = $context->getLocale()->getLanguageId();
50
-		$tmplPaths = $this->container->get('aimeos')->get()->getCustomPaths( 'client/html/templates' );
51
-		$view = $this->container->get('aimeos_view')->create( $context, $tmplPaths, $langid );
52
-		$context->setView( $view );
50
+		$tmplPaths = $this->container->get('aimeos')->get()->getCustomPaths('client/html/templates');
51
+		$view = $this->container->get('aimeos_view')->create($context, $tmplPaths, $langid);
52
+		$context->setView($view);
53 53
 
54
-		if( isset( $pagesConfig[$pageName] ) )
54
+		if (isset($pagesConfig[$pageName]))
55 55
 		{
56
-			foreach( (array) $pagesConfig[$pageName] as $clientName )
56
+			foreach ((array) $pagesConfig[$pageName] as $clientName)
57 57
 			{
58
-				$client = \Aimeos\Client\Html\Factory::createClient( $context, $tmplPaths, $clientName );
59
-				$client->setView( clone $view );
58
+				$client = \Aimeos\Client\Html\Factory::createClient($context, $tmplPaths, $clientName);
59
+				$client->setView(clone $view);
60 60
 				$client->process();
61 61
 
62 62
 				$result['aibody'][$clientName] = $client->getBody();
Please login to merge, or discard this patch.
Tests/Command/AccountCommandTest.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@  discard block
 block discarded – undo
16 16
 		$kernel = $this->createKernel();
17 17
 		$kernel->boot();
18 18
 
19
-		$application = new Application( $kernel );
20
-		$application->add( new Command\AccountCommand() );
19
+		$application = new Application($kernel);
20
+		$application->add(new Command\AccountCommand());
21 21
 
22
-		$command = $application->find( 'aimeos:account' );
23
-		$commandTester = new CommandTester( $command );
24
-		$commandTester->execute( array( 'command' => $command->getName(), 'site' => 'unittest', 'email' => '[email protected]', '--password' => 'test' ) );
22
+		$command = $application->find('aimeos:account');
23
+		$commandTester = new CommandTester($command);
24
+		$commandTester->execute(array('command' => $command->getName(), 'site' => 'unittest', 'email' => '[email protected]', '--password' => 'test'));
25 25
 
26
-		$this->assertEquals( 0, $commandTester->getStatusCode() );
26
+		$this->assertEquals(0, $commandTester->getStatusCode());
27 27
 	}
28 28
 
29 29
 
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
 		$kernel = $this->createKernel();
33 33
 		$kernel->boot();
34 34
 
35
-		$application = new Application( $kernel );
36
-		$application->add( new Command\AccountCommand() );
35
+		$application = new Application($kernel);
36
+		$application->add(new Command\AccountCommand());
37 37
 
38
-		$command = $application->find( 'aimeos:account' );
39
-		$commandTester = new CommandTester( $command );
40
-		$commandTester->execute( array( 'command' => $command->getName(), 'site' => 'unittest', 'email' => '[email protected]', '--password' => 'test', '--admin' => true ) );
38
+		$command = $application->find('aimeos:account');
39
+		$commandTester = new CommandTester($command);
40
+		$commandTester->execute(array('command' => $command->getName(), 'site' => 'unittest', 'email' => '[email protected]', '--password' => 'test', '--admin' => true));
41 41
 
42
-		$this->assertEquals( 0, $commandTester->getStatusCode() );
42
+		$this->assertEquals(0, $commandTester->getStatusCode());
43 43
 	}
44 44
 }
Please login to merge, or discard this patch.
Command/AccountCommand.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,8 +186,7 @@
 block discarded – undo
186 186
 		try
187 187
 		{
188 188
 			$item = $manager->findItem( $code );
189
-		}
190
-		catch( \Aimeos\MShop\Exception $e )
189
+		} catch( \Aimeos\MShop\Exception $e )
191 190
 		{
192 191
 			$item = $manager->createItem();
193 192
 			$item->setLabel( $code );
Please login to merge, or discard this patch.
Spacing   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -29,13 +29,13 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	protected function configure()
31 31
 	{
32
-		$this->setName( 'aimeos:account');
33
-		$this->setDescription( 'Creates new (admin) accounts' );
34
-		$this->addArgument( 'email', InputArgument::REQUIRED, 'E-mail address of the account that should be created' );
35
-		$this->addArgument( 'site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default unittest" (none for all)' );
36
-		$this->addOption( 'password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)' );
37
-		$this->addOption( 'admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges' );
38
-		$this->addOption( 'editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges' );
32
+		$this->setName('aimeos:account');
33
+		$this->setDescription('Creates new (admin) accounts');
34
+		$this->addArgument('email', InputArgument::REQUIRED, 'E-mail address of the account that should be created');
35
+		$this->addArgument('site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default unittest" (none for all)');
36
+		$this->addOption('password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)');
37
+		$this->addOption('admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges');
38
+		$this->addOption('editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges');
39 39
 	}
40 40
 
41 41
 
@@ -45,32 +45,32 @@  discard block
 block discarded – undo
45 45
 	 * @param InputInterface $input Input object
46 46
 	 * @param OutputInterface $output Output object
47 47
 	 */
48
-	protected function execute( InputInterface $input, OutputInterface $output )
48
+	protected function execute(InputInterface $input, OutputInterface $output)
49 49
 	{
50
-		$code = $input->getArgument( 'email' );
51
-		if( ( $password = $input->getOption( 'password' ) ) === null )
50
+		$code = $input->getArgument('email');
51
+		if (($password = $input->getOption('password')) === null)
52 52
 		{
53
-			$helper = $this->getHelper( 'question' );
54
-			$question = new Question( 'Password' );
55
-			$question->setHidden( true );
53
+			$helper = $this->getHelper('question');
54
+			$question = new Question('Password');
55
+			$question->setHidden(true);
56 56
 
57
-			$password = $helper->ask( $input, $output, $question );
57
+			$password = $helper->ask($input, $output, $question);
58 58
 		}
59 59
 
60
-		$context = $this->getContainer()->get( 'aimeos_context' )->get( false, 'command' );
61
-		$context->setEditor( 'aimeos:account' );
60
+		$context = $this->getContainer()->get('aimeos_context')->get(false, 'command');
61
+		$context->setEditor('aimeos:account');
62 62
 
63
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
64
-		$context->setLocale( $localeManager->createItem() );
63
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
64
+		$context->setLocale($localeManager->createItem());
65 65
 
66
-		$user = $this->createCustomerItem( $context, $code, $password );
66
+		$user = $this->createCustomerItem($context, $code, $password);
67 67
 
68
-		if( $input->getOption( 'admin' ) ) {
69
-			$this->addGroup( $input, $output, $context, $user, 'admin' );
68
+		if ($input->getOption('admin')) {
69
+			$this->addGroup($input, $output, $context, $user, 'admin');
70 70
 		}
71 71
 
72
-		if( $input->getOption( 'editor' ) ) {
73
-			$this->addGroup( $input, $output, $context, $user, 'editor' );
72
+		if ($input->getOption('editor')) {
73
+			$this->addGroup($input, $output, $context, $user, 'editor');
74 74
 		}
75 75
 	}
76 76
 
@@ -84,24 +84,24 @@  discard block
 block discarded – undo
84 84
 	 * @param \Aimeos\MShop\Customer\Item\Iface $user Aimeos customer object
85 85
 	 * @param string $group Unique customer group code
86 86
 	 */
87
-	protected function addGroup( InputInterface $input, OutputInterface $output,
88
-		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group )
87
+	protected function addGroup(InputInterface $input, OutputInterface $output,
88
+		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group)
89 89
 	{
90
-		$output->writeln( sprintf( 'Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode() ) );
90
+		$output->writeln(sprintf('Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode()));
91 91
 
92
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
92
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
93 93
 
94
-		foreach( $this->getSiteItems( $context, $input ) as $siteItem )
94
+		foreach ($this->getSiteItems($context, $input) as $siteItem)
95 95
 		{
96
-			$localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false );
96
+			$localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false);
97 97
 
98 98
 			$lcontext = clone $context;
99
-			$lcontext->setLocale( $localeItem );
99
+			$lcontext->setLocale($localeItem);
100 100
 
101
-			$output->writeln( '- ' . $siteItem->getCode() );
101
+			$output->writeln('- '.$siteItem->getCode());
102 102
 
103
-			$groupItem = $this->getGroupItem( $lcontext, $group );
104
-			$this->addListItem( $lcontext, $user->getId(), $groupItem->getId() );
103
+			$groupItem = $this->getGroupItem($lcontext, $group);
104
+			$this->addListItem($lcontext, $user->getId(), $groupItem->getId());
105 105
 		}
106 106
 	}
107 107
 
@@ -113,31 +113,31 @@  discard block
 block discarded – undo
113 113
 	 * @param string $userid Unique user ID
114 114
 	 * @param string $groupid Unique group ID
115 115
 	 */
116
-	protected function addListItem( \Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid )
116
+	protected function addListItem(\Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid)
117 117
 	{
118
-		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'lists' );
119
-		$typeid = $manager->getSubmanager( 'type' )->findItem( 'default', array(), 'customer/group' )->getId();
118
+		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('lists');
119
+		$typeid = $manager->getSubmanager('type')->findItem('default', array(), 'customer/group')->getId();
120 120
 
121 121
 		$search = $manager->createSearch();
122 122
 		$expr = array(
123
-			$search->compare( '==', 'customer.lists.parentid', $userid ),
124
-			$search->compare( '==', 'customer.lists.refid', $groupid ),
125
-			$search->compare( '==', 'customer.lists.domain', 'customer/group' ),
126
-			$search->compare( '==', 'customer.lists.typeid', $typeid ),
123
+			$search->compare('==', 'customer.lists.parentid', $userid),
124
+			$search->compare('==', 'customer.lists.refid', $groupid),
125
+			$search->compare('==', 'customer.lists.domain', 'customer/group'),
126
+			$search->compare('==', 'customer.lists.typeid', $typeid),
127 127
 		);
128
-		$search->setConditions( $search->combine( '&&', $expr ) );
129
-		$search->setSlice( 0, 1 );
128
+		$search->setConditions($search->combine('&&', $expr));
129
+		$search->setSlice(0, 1);
130 130
 
131
-		if( count( $manager->searchItems( $search ) ) === 0 )
131
+		if (count($manager->searchItems($search)) === 0)
132 132
 		{
133 133
 			$item = $manager->createItem();
134
-			$item->setDomain( 'customer/group' );
135
-			$item->setParentId( $userid );
136
-			$item->setTypeId( $typeid );
137
-			$item->setRefId( $groupid );
138
-			$item->setStatus( 1 );
134
+			$item->setDomain('customer/group');
135
+			$item->setParentId($userid);
136
+			$item->setTypeId($typeid);
137
+			$item->setRefId($groupid);
138
+			$item->setStatus(1);
139 139
 
140
-			$manager->saveItem( $item, false );
140
+			$manager->saveItem($item, false);
141 141
 		}
142 142
 	}
143 143
 
@@ -152,23 +152,23 @@  discard block
 block discarded – undo
152 152
 	 * @param string $password New user password
153 153
 	 * @return \Aimeos\MShop\Customer\Item\Iface Aimeos customer item object
154 154
 	 */
155
-	protected function createCustomerItem( \Aimeos\MShop\Context\Item\Iface $context, $email, $password )
155
+	protected function createCustomerItem(\Aimeos\MShop\Context\Item\Iface $context, $email, $password)
156 156
 	{
157
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer' );
157
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer');
158 158
 
159 159
 		try {
160
-			$item = $manager->findItem( $email );
161
-		} catch( \Aimeos\MShop\Exception $e ) {
160
+			$item = $manager->findItem($email);
161
+		} catch (\Aimeos\MShop\Exception $e) {
162 162
 			$item = $manager->createItem();
163 163
 		}
164 164
 
165
-		$item->setCode( $email );
166
-		$item->setLabel( $email );
167
-		$item->getPaymentAddress()->setEmail( $email );
168
-		$item->setPassword( $password );
169
-		$item->setStatus( 1 );
165
+		$item->setCode($email);
166
+		$item->setLabel($email);
167
+		$item->getPaymentAddress()->setEmail($email);
168
+		$item->setPassword($password);
169
+		$item->setStatus(1);
170 170
 
171
-		$manager->saveItem( $item );
171
+		$manager->saveItem($item);
172 172
 
173 173
 		return $item;
174 174
 	}
@@ -181,21 +181,21 @@  discard block
 block discarded – undo
181 181
 	 * @param string $code Unique customer group code
182 182
 	 * @return \Aimeos\MShop\Customer\Item\Group\Iface Aimeos customer group item object
183 183
 	 */
184
-	protected function getGroupItem( \Aimeos\MShop\Context\Item\Iface $context, $code )
184
+	protected function getGroupItem(\Aimeos\MShop\Context\Item\Iface $context, $code)
185 185
 	{
186
-		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'group' );
186
+		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('group');
187 187
 
188 188
 		try
189 189
 		{
190
-			$item = $manager->findItem( $code );
190
+			$item = $manager->findItem($code);
191 191
 		}
192
-		catch( \Aimeos\MShop\Exception $e )
192
+		catch (\Aimeos\MShop\Exception $e)
193 193
 		{
194 194
 			$item = $manager->createItem();
195
-			$item->setLabel( $code );
196
-			$item->setCode( $code );
195
+			$item->setLabel($code);
196
+			$item->setCode($code);
197 197
 
198
-			$manager->saveItem( $item );
198
+			$manager->saveItem($item);
199 199
 		}
200 200
 
201 201
 		return $item;
Please login to merge, or discard this patch.
Controller/LocaleController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,6 +28,6 @@
 block discarded – undo
28 28
 	 */
29 29
 	public function selectComponentAction()
30 30
 	{
31
-		return $this->getOutput( 'locale/select' );
31
+		return $this->getOutput('locale/select');
32 32
 	}
33 33
 }
Please login to merge, or discard this patch.
Controller/AbstractController.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -28,29 +28,29 @@
 block discarded – undo
28 28
 	 * @param string $clientName Html client name
29 29
 	 * @return Response Response object containing the generated output
30 30
 	 */
31
-	protected function getOutput( $clientName )
31
+	protected function getOutput($clientName)
32 32
 	{
33
-		$tmplPaths = $this->container->get( 'aimeos' )->get()->getCustomPaths( 'client/html/templates' );
34
-		$context = $this->container->get( 'aimeos_context' )->get();
33
+		$tmplPaths = $this->container->get('aimeos')->get()->getCustomPaths('client/html/templates');
34
+		$context = $this->container->get('aimeos_context')->get();
35 35
 		$langid = $context->getLocale()->getLanguageId();
36 36
 
37
-		$view = $this->container->get( 'aimeos_view' )->create( $context, $tmplPaths, $langid );
38
-		$context->setView( $view );
37
+		$view = $this->container->get('aimeos_view')->create($context, $tmplPaths, $langid);
38
+		$context->setView($view);
39 39
 
40
-		$client = \Aimeos\Client\Html\Factory::createClient( $context, $tmplPaths, $clientName );
41
-		$client->setView( $view );
40
+		$client = \Aimeos\Client\Html\Factory::createClient($context, $tmplPaths, $clientName);
41
+		$client->setView($view);
42 42
 		$client->process();
43 43
 
44
-		$twig = $this->container->get( 'twig' );
44
+		$twig = $this->container->get('twig');
45 45
 		$vars = $twig->getGlobals();
46 46
 
47
-		if( !isset( $vars['aiheader'] ) ) {
47
+		if (!isset($vars['aiheader'])) {
48 48
 			$vars['aiheader'] = array();
49 49
 		}
50 50
 
51 51
 		$vars['aiheader'][$clientName] = (string) $client->getHeader();
52
-		$twig->addGlobal( 'aiheader', $vars['aiheader'] );
52
+		$twig->addGlobal('aiheader', $vars['aiheader']);
53 53
 
54
-		return new Response( (string) $client->getBody() );
54
+		return new Response((string) $client->getBody());
55 55
 	}
56 56
 }
Please login to merge, or discard this patch.
Tests/Controller/AdminControllerTest.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
 	{
12 12
 		$client = static::createClient();
13 13
 
14
-		$client->request( 'GET', '/admin' );
14
+		$client->request('GET', '/admin');
15 15
 		$response = $client->getResponse();
16 16
 
17
-		$this->assertEquals( 200, $response->getStatusCode() );
18
-		$this->assertContains( '<form class="login"', $response->getContent() );
17
+		$this->assertEquals(200, $response->getStatusCode());
18
+		$this->assertContains('<form class="login"', $response->getContent());
19 19
 	}
20 20
 
21 21
 
@@ -24,12 +24,12 @@  discard block
 block discarded – undo
24 24
 		$client = static::createClient(array(), array(
25 25
 			'PHP_AUTH_USER' => 'admin',
26 26
 			'PHP_AUTH_PW'   => 'adminpass',
27
-		) );
27
+		));
28 28
 
29
-		$client->request( 'GET', '/admin' );
29
+		$client->request('GET', '/admin');
30 30
 		$response = $client->getResponse();
31 31
 
32
-		$this->assertEquals( 302, $response->getStatusCode() );
33
-		$this->assertContains( '/default/jqadm/search/dashboard?lang=en', $response->getContent() );
32
+		$this->assertEquals(302, $response->getStatusCode());
33
+		$this->assertContains('/default/jqadm/search/dashboard?lang=en', $response->getContent());
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
Controller/AdminController.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -29,23 +29,23 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function indexAction()
31 31
 	{
32
-		if( $this->isAdmin() )
32
+		if ($this->isAdmin())
33 33
 		{
34
-			$params = array( 'site' => 'default', 'resource' => 'dashboard', 'lang' => 'en' );
35
-			return $this->redirect( $this->generateUrl( 'aimeos_shop_jqadm_search', $params ) );
34
+			$params = array('site' => 'default', 'resource' => 'dashboard', 'lang' => 'en');
35
+			return $this->redirect($this->generateUrl('aimeos_shop_jqadm_search', $params));
36 36
 		}
37 37
 
38
-		$param = array( 'error' => '', 'username' => '' );
38
+		$param = array('error' => '', 'username' => '');
39 39
 
40
-		if( $this->has( 'security.authentication_utils' ) )
40
+		if ($this->has('security.authentication_utils'))
41 41
 		{
42
-			$auth = $this->get( 'security.authentication_utils' );
42
+			$auth = $this->get('security.authentication_utils');
43 43
 
44 44
 			$param['error'] = $auth->getLastAuthenticationError();
45 45
 			$param['username'] = $auth->getLastUsername();
46 46
 		}
47 47
 
48
-		return $this->render( 'AimeosShopBundle:Admin:index.html.twig', $param );
48
+		return $this->render('AimeosShopBundle:Admin:index.html.twig', $param);
49 49
 	}
50 50
 
51 51
 
@@ -56,10 +56,10 @@  discard block
 block discarded – undo
56 56
 	 */
57 57
 	protected function isAdmin()
58 58
 	{
59
-		if( $this->has( 'security.authorization_checker' ) && $this->get( 'security.token_storage' )->getToken()
60
-			&& $this->get( 'security.authorization_checker' )->isGranted( 'ROLE_ADMIN' )
61
-			|| $this->has( 'security.context' ) && $this->get( 'security.context' )->getToken()
62
-			&& $this->get( 'security.context' )->isGranted( 'ROLE_ADMIN' )
59
+		if ($this->has('security.authorization_checker') && $this->get('security.token_storage')->getToken()
60
+			&& $this->get('security.authorization_checker')->isGranted('ROLE_ADMIN')
61
+			|| $this->has('security.context') && $this->get('security.context')->getToken()
62
+			&& $this->get('security.context')->isGranted('ROLE_ADMIN')
63 63
 		) {
64 64
 			return true;
65 65
 		}
Please login to merge, or discard this patch.
Service/Support.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,15 +27,15 @@
 block discarded – undo
27 27
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object
28 28
 	 * @return array List of group codes the user is in
29 29
 	 */
30
-	public function getGroups( \Aimeos\MShop\Context\Item\Iface $context )
30
+	public function getGroups(\Aimeos\MShop\Context\Item\Iface $context)
31 31
 	{
32 32
 		$list = array();
33
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/group' );
33
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer/group');
34 34
 
35 35
 		$search = $manager->createSearch();
36
-		$search->setConditions( $search->compare( '==', 'customer.group.id', $context->getGroupIds() ) );
36
+		$search->setConditions($search->compare('==', 'customer.group.id', $context->getGroupIds()));
37 37
 
38
-		foreach( $manager->searchItems( $search ) as $item ) {
38
+		foreach ($manager->searchItems($search) as $item) {
39 39
 			$list[] = $item->getCode();
40 40
 		}
41 41
 
Please login to merge, or discard this patch.
Service/Locale.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	 * @param RequestStack $requestStack Current request stack
33 33
 	 * @param Container $container Container object to access parameters
34 34
 	 */
35
-	public function __construct( RequestStack $requestStack, Container $container )
35
+	public function __construct(RequestStack $requestStack, Container $container)
36 36
 	{
37 37
 		$this->requestStack = $requestStack;
38 38
 		$this->container = $container;
@@ -45,19 +45,19 @@  discard block
 block discarded – undo
45 45
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object
46 46
 	 * @return \Aimeos\MShop\Locale\Item\Iface Locale item object
47 47
 	 */
48
-	public function get( \Aimeos\MShop\Context\Item\Iface $context )
48
+	public function get(\Aimeos\MShop\Context\Item\Iface $context)
49 49
 	{
50
-		if( $this->locale === null )
50
+		if ($this->locale === null)
51 51
 		{
52
-			$status = $this->container->getParameter( 'aimeos_shop.disable_sites' );
52
+			$status = $this->container->getParameter('aimeos_shop.disable_sites');
53 53
 			$request = $this->requestStack->getMasterRequest();
54 54
 
55
-			$site = $request->attributes->get( 'site', $request->query->get( 'site', 'default' ) );
56
-			$currency = $request->attributes->get( 'currency', $request->query->get( 'currency', '' ) );
57
-			$lang = $request->attributes->get( 'locale', $request->query->get( 'locale', '' ) );
55
+			$site = $request->attributes->get('site', $request->query->get('site', 'default'));
56
+			$currency = $request->attributes->get('currency', $request->query->get('currency', ''));
57
+			$lang = $request->attributes->get('locale', $request->query->get('locale', ''));
58 58
 
59
-			$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
60
-			$this->locale = $localeManager->bootstrap( $site, $lang, $currency, $status );
59
+			$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
60
+			$this->locale = $localeManager->bootstrap($site, $lang, $currency, $status);
61 61
 		}
62 62
 
63 63
 		return $this->locale;
@@ -71,17 +71,17 @@  discard block
 block discarded – undo
71 71
 	 * @param string $site Unique site code
72 72
 	 * @return \Aimeos\MShop\Locale\Item\Iface Locale item object
73 73
 	 */
74
-	public function getBackend( \Aimeos\MShop\Context\Item\Iface $context, $site )
74
+	public function getBackend(\Aimeos\MShop\Context\Item\Iface $context, $site)
75 75
 	{
76
-		$localeManager = \Aimeos\MShop\Factory::createManager( $context, 'locale' );
76
+		$localeManager = \Aimeos\MShop\Factory::createManager($context, 'locale');
77 77
 
78 78
 		try
79 79
 		{
80
-			$localeItem = $localeManager->bootstrap( $site, '', '', false );
81
-			$localeItem->setLanguageId( null );
82
-			$localeItem->setCurrencyId( null );
80
+			$localeItem = $localeManager->bootstrap($site, '', '', false);
81
+			$localeItem->setLanguageId(null);
82
+			$localeItem->setCurrencyId(null);
83 83
 		}
84
-		catch( \Aimeos\MShop\Locale\Exception $e )
84
+		catch (\Aimeos\MShop\Locale\Exception $e)
85 85
 		{
86 86
 			$localeItem = $localeManager->createItem();
87 87
 		}
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,8 +80,7 @@
 block discarded – undo
80 80
 			$localeItem = $localeManager->bootstrap( $site, '', '', false );
81 81
 			$localeItem->setLanguageId( null );
82 82
 			$localeItem->setCurrencyId( null );
83
-		}
84
-		catch( \Aimeos\MShop\Locale\Exception $e )
83
+		} catch( \Aimeos\MShop\Locale\Exception $e )
85 84
 		{
86 85
 			$localeItem = $localeManager->createItem();
87 86
 		}
Please login to merge, or discard this patch.