Completed
Push — master ( f34bf4...928276 )
by Aimeos
02:22
created
src/Aimeos/Shop/Controller/BasketController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	 */
30 30
 	public function indexAction()
31 31
 	{
32
-		$params = app( '\Aimeos\Shop\Base\Page' )->getSections( 'basket-index' );
32
+		$params = app('\Aimeos\Shop\Base\Page')->getSections('basket-index');
33 33
 		return Response::view('shop::basket.index', $params)->header('Cache-Control', 'no-store');
34 34
 	}
35 35
 }
36 36
\ No newline at end of file
Please login to merge, or discard this patch.
src/Aimeos/Shop/Controller/AccountController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function indexAction()
31 31
 	{
32
-		$params = app( '\Aimeos\Shop\Base\Page' )->getSections( 'account-index' );
32
+		$params = app('\Aimeos\Shop\Base\Page')->getSections('account-index');
33 33
 		return Response::view('shop::account.index', $params)->header('Cache-Control', 'private, max-age=300');
34 34
 	}
35 35
 
@@ -41,18 +41,18 @@  discard block
 block discarded – undo
41 41
 	 */
42 42
 	public function downloadAction()
43 43
 	{
44
-		$context = app( '\Aimeos\Shop\Base\Context' )->get();
44
+		$context = app('\Aimeos\Shop\Base\Context')->get();
45 45
 		$langid = $context->getLocale()->getLanguageId();
46 46
 
47
-		$view = app( '\Aimeos\Shop\Base\View' )->create( $context, array(), $langid );
48
-		$context->setView( $view );
47
+		$view = app('\Aimeos\Shop\Base\View')->create($context, array(), $langid);
48
+		$context->setView($view);
49 49
 
50
-		$client = \Aimeos\Client\Html\Factory::createClient( $context, array(), 'account/download' );
51
-		$client->setView( $view );
50
+		$client = \Aimeos\Client\Html\Factory::createClient($context, array(), 'account/download');
51
+		$client->setView($view);
52 52
 		$client->process();
53 53
 
54 54
 		$response = $view->response();
55
-		return Response::make( (string) $response->getBody(), $response->getStatusCode(), $response->getHeaders() )
55
+		return Response::make((string) $response->getBody(), $response->getStatusCode(), $response->getHeaders())
56 56
 			->header('Cache-Control', 'private, max-age=300', false);
57 57
 	}
58 58
 }
59 59
\ No newline at end of file
Please login to merge, or discard this patch.
src/Aimeos/Shop/Controller/CatalogController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function countAction()
31 31
 	{
32
-		$params = app( '\Aimeos\Shop\Base\Page' )->getSections( 'catalog-count' );
32
+		$params = app('\Aimeos\Shop\Base\Page')->getSections('catalog-count');
33 33
 
34 34
 		return Response::view('shop::catalog.count', $params)
35 35
 			->header('Content-Type', 'application/javascript')
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	public function detailAction()
46 46
 	{
47
-		$params = app( 'Aimeos\Shop\Base\Page' )->getSections( 'catalog-detail' );
47
+		$params = app('Aimeos\Shop\Base\Page')->getSections('catalog-detail');
48 48
 		return Response::view('shop::catalog.detail', $params)->header('Cache-Control', 'max-age=43200');
49 49
 	}
50 50
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	 */
57 57
 	public function listAction()
58 58
 	{
59
-		$params = app( 'Aimeos\Shop\Base\Page' )->getSections( 'catalog-list' );
59
+		$params = app('Aimeos\Shop\Base\Page')->getSections('catalog-list');
60 60
 		return Response::view('shop::catalog.list', $params)->header('Cache-Control', 'max-age=43200');
61 61
 	}
62 62
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 */
69 69
 	public function stockAction()
70 70
 	{
71
-		$params = app( 'Aimeos\Shop\Base\Page' )->getSections( 'catalog-stock' );
71
+		$params = app('Aimeos\Shop\Base\Page')->getSections('catalog-stock');
72 72
 
73 73
 		return Response::view('shop::catalog.stock', $params)
74 74
 			->header('Content-Type', 'application/javascript')
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 */
84 84
 	public function suggestAction()
85 85
 	{
86
-		$params = app( 'Aimeos\Shop\Base\Page' )->getSections( 'catalog-suggest' );
86
+		$params = app('Aimeos\Shop\Base\Page')->getSections('catalog-suggest');
87 87
 
88 88
 		return Response::view('shop::catalog.suggest', $params)
89 89
 			->header('Content-Type', 'application/json')
Please login to merge, or discard this patch.
src/Aimeos/Shop/Controller/CheckoutController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function confirmAction()
31 31
 	{
32
-		$params = app( '\Aimeos\Shop\Base\Page' )->getSections( 'checkout-confirm' );
32
+		$params = app('\Aimeos\Shop\Base\Page')->getSections('checkout-confirm');
33 33
 		return Response::view('shop::checkout.confirm', $params)->header('Cache-Control', 'no-store');
34 34
 	}
35 35
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 	 */
42 42
 	public function indexAction()
43 43
 	{
44
-		$params = app( '\Aimeos\Shop\Base\Page' )->getSections( 'checkout-index' );
44
+		$params = app('\Aimeos\Shop\Base\Page')->getSections('checkout-index');
45 45
 		return Response::view('shop::checkout.index', $params)->header('Cache-Control', 'no-store');
46 46
 	}
47 47
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 */
54 54
 	public function updateAction()
55 55
 	{
56
-		$params = app( '\Aimeos\Shop\Base\Page' )->getSections( 'checkout-update' );
56
+		$params = app('\Aimeos\Shop\Base\Page')->getSections('checkout-update');
57 57
 		return Response::view('shop::checkout.update', $params)->header('Cache-Control', 'no-store');
58 58
 	}
59 59
 }
60 60
\ No newline at end of file
Please login to merge, or discard this patch.
src/views/jqadm/index.blade.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 		<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/css/tether.min.css" integrity="sha256-y4TDcAD4/j5o4keZvggf698Cr9Oc7JZ+gGMax23qmVA=" crossorigin="anonymous" />
12 12
 		<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
13 13
 		<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
14
-		<link rel="stylesheet" href="<?= route( 'aimeos_shop_jqadm_file', array( 'site' => $site, 'lang' => 'en', 'type' => 'css' ) ); ?>">
14
+		<link rel="stylesheet" href="<?= route('aimeos_shop_jqadm_file', array('site' => $site, 'lang' => 'en', 'type' => 'css')); ?>">
15 15
 	</head>
16 16
 	<body>
17 17
 
@@ -24,6 +24,6 @@  discard block
 block discarded – undo
24 24
 		<script src="https://cdnjs.cloudflare.com/ajax/libs/ckeditor/4.6.2/ckeditor.js" integrity="sha256-TD9khtuB9OoHJICSCe1SngH2RckROdDPDb5JJaUTi7I=" crossorigin="anonymous"></script>
25 25
 		<script src="https://cdnjs.cloudflare.com/ajax/libs/ckeditor/4.6.2/adapters/jquery.js" integrity="sha256-kWca68zAjkLv7iMEyHDuFKa9KxIij+DiCScmbTMlJHM=" crossorigin="anonymous"></script>
26 26
 		<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
27
-		<script src="<?= route( 'aimeos_shop_jqadm_file', array( 'site' => $site, 'lang' => 'en', 'type' => 'js' ) ); ?>"></script>
27
+		<script src="<?= route('aimeos_shop_jqadm_file', array('site' => $site, 'lang' => 'en', 'type' => 'js')); ?>"></script>
28 28
 	</body>
29 29
 </html>
Please login to merge, or discard this patch.
src/Aimeos/Shop/Base/Support.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	 * @param \Aimeos\Shop\Base\Context $context Context provider
40 40
 	 * @param \Aimeos\Shop\Base\Locale $locale Locale provider
41 41
 	 */
42
-	public function __construct( \Aimeos\Shop\Base\Context $context, \Aimeos\Shop\Base\Locale $locale )
42
+	public function __construct(\Aimeos\Shop\Base\Context $context, \Aimeos\Shop\Base\Locale $locale)
43 43
 	{
44 44
 		$this->context = $context;
45 45
 		$this->locale = $locale;
@@ -53,22 +53,22 @@  discard block
 block discarded – undo
53 53
 	 * @param string|array $groupcodes Unique user/customer group codes that are allowed
54 54
 	 * @return boolean True if user is part of the group, false if not
55 55
 	 */
56
-	public function checkUserGroup( \Illuminate\Foundation\Auth\User $user, $groupcodes )
56
+	public function checkUserGroup(\Illuminate\Foundation\Auth\User $user, $groupcodes)
57 57
 	{
58
-		$context = $this->context->get( false );
58
+		$context = $this->context->get(false);
59 59
 
60 60
 		try {
61
-			$site = \Aimeos\MShop\Factory::createManager( $context, 'locale/site' )->getItem( $user->siteid )->getCode();
62
-		} catch( \Exception $e ) {
63
-			$site = ( Route::current() ? Route::input( 'site', Input::get( 'site', 'default' ) ) : 'default' );
61
+			$site = \Aimeos\MShop\Factory::createManager($context, 'locale/site')->getItem($user->siteid)->getCode();
62
+		} catch (\Exception $e) {
63
+			$site = (Route::current() ? Route::input('site', Input::get('site', 'default')) : 'default');
64 64
 		}
65 65
 
66
-		$context->setLocale( $this->locale->getBackend( $context, $site ) );
66
+		$context->setLocale($this->locale->getBackend($context, $site));
67 67
 
68
-		foreach( array_reverse( $context->getLocale()->getSitePath() ) as $siteid )
68
+		foreach (array_reverse($context->getLocale()->getSitePath()) as $siteid)
69 69
 		{
70
-			if( $user->siteid === $siteid ) {
71
-				return $this->checkGroups( $context, $user->id, $groupcodes );
70
+			if ($user->siteid === $siteid) {
71
+				return $this->checkGroups($context, $user->id, $groupcodes);
72 72
 			}
73 73
 		}
74 74
 
@@ -84,14 +84,14 @@  discard block
 block discarded – undo
84 84
 	 * @return boolean True if user is part of the group, false if not
85 85
 	 * @deprecated Use checkUserGroup() instead
86 86
 	 */
87
-	public function checkGroup( $userid, $groupcodes )
87
+	public function checkGroup($userid, $groupcodes)
88 88
 	{
89
-		$site = ( Route::current() ? Route::input( 'site', Input::get( 'site', 'default' ) ) : 'default' );
89
+		$site = (Route::current() ? Route::input('site', Input::get('site', 'default')) : 'default');
90 90
 
91
-		$context = $this->context->get( false );
92
-		$context->setLocale( $this->locale->getBackend( $context, $site ) );
91
+		$context = $this->context->get(false);
92
+		$context->setLocale($this->locale->getBackend($context, $site));
93 93
 
94
-		return $this->checkGroups( $context, $userid, $groupcodes );
94
+		return $this->checkGroups($context, $userid, $groupcodes);
95 95
 	}
96 96
 
97 97
 
@@ -101,15 +101,15 @@  discard block
 block discarded – undo
101 101
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context item
102 102
 	 * @return string[] List of group codes
103 103
 	 */
104
-	public function getGroups( \Aimeos\MShop\Context\Item\Iface $context )
104
+	public function getGroups(\Aimeos\MShop\Context\Item\Iface $context)
105 105
 	{
106 106
 		$list = array();
107
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/group' );
107
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer/group');
108 108
 
109 109
 		$search = $manager->createSearch();
110
-		$search->setConditions( $search->compare( '==', 'customer.group.id', $context->getGroupIds() ) );
110
+		$search->setConditions($search->compare('==', 'customer.group.id', $context->getGroupIds()));
111 111
 
112
-		foreach( $manager->searchItems( $search ) as $item ) {
112
+		foreach ($manager->searchItems($search) as $item) {
113 113
 			$list[] = $item->getCode();
114 114
 		}
115 115
 
@@ -125,26 +125,26 @@  discard block
 block discarded – undo
125 125
 	 * @param string[] $groupcodes List of group codes to check against
126 126
 	 * @return boolean True if the user is in one of the groups, false if not
127 127
 	 */
128
-	protected function checkGroups( \Aimeos\MShop\Context\Item\Iface $context, $userid, $groupcodes )
128
+	protected function checkGroups(\Aimeos\MShop\Context\Item\Iface $context, $userid, $groupcodes)
129 129
 	{
130
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/group' );
130
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer/group');
131 131
 
132 132
 		$search = $manager->createSearch();
133
-		$search->setConditions( $search->compare( '==', 'customer.group.code', (array) $groupcodes ) );
134
-		$groupItems = $manager->searchItems( $search );
133
+		$search->setConditions($search->compare('==', 'customer.group.code', (array) $groupcodes));
134
+		$groupItems = $manager->searchItems($search);
135 135
 
136 136
 
137
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/lists' );
137
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists');
138 138
 
139 139
 		$search = $manager->createSearch();
140 140
 		$expr = array(
141
-			$search->compare( '==', 'customer.lists.parentid', $userid ),
142
-			$search->compare( '==', 'customer.lists.refid', array_keys( $groupItems ) ),
143
-			$search->compare( '==', 'customer.lists.domain', 'customer/group' ),
141
+			$search->compare('==', 'customer.lists.parentid', $userid),
142
+			$search->compare('==', 'customer.lists.refid', array_keys($groupItems)),
143
+			$search->compare('==', 'customer.lists.domain', 'customer/group'),
144 144
 		);
145
-		$search->setConditions( $search->combine( '&&', $expr ) );
146
-		$search->setSlice( 0, 1 );
145
+		$search->setConditions($search->combine('&&', $expr));
146
+		$search->setSlice(0, 1);
147 147
 
148
-		return (bool) count( $manager->searchItems( $search ) );
148
+		return (bool) count($manager->searchItems($search));
149 149
 	}
150 150
 }
151 151
\ No newline at end of file
Please login to merge, or discard this patch.
src/Aimeos/Shop/Controller/AdminController.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -36,24 +36,24 @@
 block discarded – undo
36 36
 	 * @param \Illuminate\Http\Request $request Laravel request object
37 37
 	 * @return \Illuminate\Contracts\View\View View for rendering the output
38 38
 	 */
39
-	public function indexAction( Request $request )
39
+	public function indexAction(Request $request)
40 40
 	{
41
-		if( Auth::check() === false
42
-			|| $request->user()->can( 'admin', [AdminController::class, ['admin', 'editor']] ) === false
41
+		if (Auth::check() === false
42
+			|| $request->user()->can('admin', [AdminController::class, ['admin', 'editor']]) === false
43 43
 		) {
44
-			return redirect()->guest( 'login' );
44
+			return redirect()->guest('login');
45 45
 		}
46 46
 
47
-		$context = app( '\Aimeos\Shop\Base\Context' )->get( false );
48
-		$siteManager = \Aimeos\MShop\Factory::createManager( $context, 'locale/site' );
49
-		$siteItem = $siteManager->getItem( $request->user()->siteid );
47
+		$context = app('\Aimeos\Shop\Base\Context')->get(false);
48
+		$siteManager = \Aimeos\MShop\Factory::createManager($context, 'locale/site');
49
+		$siteItem = $siteManager->getItem($request->user()->siteid);
50 50
 
51 51
 		$param = array(
52 52
 			'resource' => 'dashboard',
53
-			'site' => Route::input( 'site', Input::get( 'site', $siteItem->getCode() ) ),
54
-			'lang' => Route::input( 'lang', Input::get( 'lang', $request->user()->langid ?: config( 'app.locale', 'en' ) ) )
53
+			'site' => Route::input('site', Input::get('site', $siteItem->getCode())),
54
+			'lang' => Route::input('lang', Input::get('lang', $request->user()->langid ?: config('app.locale', 'en')))
55 55
 		);
56 56
 
57
-		return redirect()->route( 'aimeos_shop_jqadm_search', $param );
57
+		return redirect()->route('aimeos_shop_jqadm_search', $param);
58 58
 	}
59 59
 }
Please login to merge, or discard this patch.
src/Aimeos/Shop/Command/AccountCommand.php 1 patch
Spacing   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -43,30 +43,30 @@  discard block
 block discarded – undo
43 43
 	 */
44 44
 	public function fire()
45 45
 	{
46
-		$code = $this->argument( 'email' );
47
-		if( ( $password = $this->option( 'password' ) ) === null ) {
48
-			$password = $this->secret( 'Password' );
46
+		$code = $this->argument('email');
47
+		if (($password = $this->option('password')) === null) {
48
+			$password = $this->secret('Password');
49 49
 		}
50 50
 
51
-		$context = $this->getLaravel()->make( 'Aimeos\Shop\Base\Context' )->get( false, 'command' );
52
-		$context->setEditor( 'aimeos:account' );
51
+		$context = $this->getLaravel()->make('Aimeos\Shop\Base\Context')->get(false, 'command');
52
+		$context->setEditor('aimeos:account');
53 53
 
54
-		$localeManager = \Aimeos\MShop\Factory::createManager( $context, 'locale' );
55
-		$localeItem = $localeManager->bootstrap( $this->argument( 'site' ), '', '', false );
56
-		$context->setLocale( $localeItem );
54
+		$localeManager = \Aimeos\MShop\Factory::createManager($context, 'locale');
55
+		$localeItem = $localeManager->bootstrap($this->argument('site'), '', '', false);
56
+		$context->setLocale($localeItem);
57 57
 
58
-		$user = $this->createCustomerItem( $context, $code, $password );
58
+		$user = $this->createCustomerItem($context, $code, $password);
59 59
 
60
-		if( $this->option( 'admin' ) ) {
61
-			$this->addGroup( $context, $user, 'admin' );
60
+		if ($this->option('admin')) {
61
+			$this->addGroup($context, $user, 'admin');
62 62
 		}
63 63
 
64
-		if( $this->option( 'api' ) ) {
65
-			$this->addGroup( $context, $user, 'api' );
64
+		if ($this->option('api')) {
65
+			$this->addGroup($context, $user, 'api');
66 66
 		}
67 67
 
68
-		if( $this->option( 'editor' ) ) {
69
-			$this->addGroup( $context, $user, 'editor' );
68
+		if ($this->option('editor')) {
69
+			$this->addGroup($context, $user, 'editor');
70 70
 		}
71 71
 	}
72 72
 
@@ -78,33 +78,33 @@  discard block
 block discarded – undo
78 78
 	 * @param string $userid Unique user ID
79 79
 	 * @param string $groupid Unique group ID
80 80
 	 */
81
-	protected function addListItem( \Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid )
81
+	protected function addListItem(\Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid)
82 82
 	{
83
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/lists' );
84
-		$typeManager = \Aimeos\MShop\Factory::createManager( $context, 'customer/lists/type' );
83
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists');
84
+		$typeManager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists/type');
85 85
 
86
-		$typeid = $typeManager->findItem( 'default', array(), 'customer/group' )->getId();
86
+		$typeid = $typeManager->findItem('default', array(), 'customer/group')->getId();
87 87
 
88 88
 		$search = $manager->createSearch();
89 89
 		$expr = array(
90
-			$search->compare( '==', 'customer.lists.parentid', $userid ),
91
-			$search->compare( '==', 'customer.lists.refid', $groupid ),
92
-			$search->compare( '==', 'customer.lists.domain', 'customer/group' ),
93
-			$search->compare( '==', 'customer.lists.typeid', $typeid ),
90
+			$search->compare('==', 'customer.lists.parentid', $userid),
91
+			$search->compare('==', 'customer.lists.refid', $groupid),
92
+			$search->compare('==', 'customer.lists.domain', 'customer/group'),
93
+			$search->compare('==', 'customer.lists.typeid', $typeid),
94 94
 		);
95
-		$search->setConditions( $search->combine( '&&', $expr ) );
96
-		$search->setSlice( 0, 1 );
95
+		$search->setConditions($search->combine('&&', $expr));
96
+		$search->setSlice(0, 1);
97 97
 
98
-		if( count( $manager->searchItems( $search ) ) === 0 )
98
+		if (count($manager->searchItems($search)) === 0)
99 99
 		{
100 100
 			$item = $manager->createItem();
101
-			$item->setDomain( 'customer/group' );
102
-			$item->setParentId( $userid );
103
-			$item->setTypeId( $typeid );
104
-			$item->setRefId( $groupid );
105
-			$item->setStatus( 1 );
101
+			$item->setDomain('customer/group');
102
+			$item->setParentId($userid);
103
+			$item->setTypeId($typeid);
104
+			$item->setRefId($groupid);
105
+			$item->setStatus(1);
106 106
 
107
-			$manager->saveItem( $item, false );
107
+			$manager->saveItem($item, false);
108 108
 		}
109 109
 	}
110 110
 
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
 	 * @param \Aimeos\MShop\Customer\Item\Iface $user Aimeos customer object
117 117
 	 * @param string $group Unique customer group code
118 118
 	 */
119
-	protected function addGroup( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group )
119
+	protected function addGroup(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group)
120 120
 	{
121 121
 		$msg = 'Add "%1$s" group to user "%2$s" for site "%3$s"';
122
-		$this->info( sprintf( $msg, $group, $user->getCode(), $this->argument( 'site' ) ) );
122
+		$this->info(sprintf($msg, $group, $user->getCode(), $this->argument('site')));
123 123
 
124
-		$groupItem = $this->getGroupItem( $context, $group );
125
-		$this->addListItem( $context, $user->getId(), $groupItem->getId() );
124
+		$groupItem = $this->getGroupItem($context, $group);
125
+		$this->addListItem($context, $user->getId(), $groupItem->getId());
126 126
 	}
127 127
 
128 128
 
@@ -136,23 +136,23 @@  discard block
 block discarded – undo
136 136
 	 * @param string $password New user password
137 137
 	 * @return \Aimeos\MShop\Customer\Item\Iface Aimeos customer item object
138 138
 	 */
139
-	protected function createCustomerItem( \Aimeos\MShop\Context\Item\Iface $context, $email, $password )
139
+	protected function createCustomerItem(\Aimeos\MShop\Context\Item\Iface $context, $email, $password)
140 140
 	{
141
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer' );
141
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer');
142 142
 
143 143
 		try {
144
-			$item = $manager->findItem( $email );
145
-		} catch( \Aimeos\MShop\Exception $e ) {
144
+			$item = $manager->findItem($email);
145
+		} catch (\Aimeos\MShop\Exception $e) {
146 146
 			$item = $manager->createItem();
147 147
 		}
148 148
 
149
-		$item->setCode( $email );
150
-		$item->setLabel( $email );
151
-		$item->getPaymentAddress()->setEmail( $email );
152
-		$item->setPassword( $password );
153
-		$item->setStatus( 1 );
149
+		$item->setCode($email);
150
+		$item->setLabel($email);
151
+		$item->getPaymentAddress()->setEmail($email);
152
+		$item->setPassword($password);
153
+		$item->setStatus(1);
154 154
 
155
-		$manager->saveItem( $item );
155
+		$manager->saveItem($item);
156 156
 
157 157
 		return $item;
158 158
 	}
@@ -166,8 +166,8 @@  discard block
 block discarded – undo
166 166
 	protected function getArguments()
167 167
 	{
168 168
 		return array(
169
-			array( 'email', InputArgument::REQUIRED, 'E-mail address of the account that should be created' ),
170
-			array( 'site', InputArgument::OPTIONAL, 'Site code to create the account for', 'default' ),
169
+			array('email', InputArgument::REQUIRED, 'E-mail address of the account that should be created'),
170
+			array('site', InputArgument::OPTIONAL, 'Site code to create the account for', 'default'),
171 171
 		);
172 172
 	}
173 173
 
@@ -179,21 +179,21 @@  discard block
 block discarded – undo
179 179
 	 * @param string $code Unique customer group code
180 180
 	 * @return \Aimeos\MShop\Customer\Item\Group\Iface Aimeos customer group item object
181 181
 	 */
182
-	protected function getGroupItem( \Aimeos\MShop\Context\Item\Iface $context, $code )
182
+	protected function getGroupItem(\Aimeos\MShop\Context\Item\Iface $context, $code)
183 183
 	{
184
-		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'group' );
184
+		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('group');
185 185
 
186 186
 		try
187 187
 		{
188
-			$item = $manager->findItem( $code );
188
+			$item = $manager->findItem($code);
189 189
 		}
190
-		catch( \Aimeos\MShop\Exception $e )
190
+		catch (\Aimeos\MShop\Exception $e)
191 191
 		{
192 192
 			$item = $manager->createItem();
193
-			$item->setLabel( $code );
194
-			$item->setCode( $code );
193
+			$item->setLabel($code);
194
+			$item->setCode($code);
195 195
 
196
-			$manager->saveItem( $item );
196
+			$manager->saveItem($item);
197 197
 		}
198 198
 
199 199
 		return $item;
@@ -208,10 +208,10 @@  discard block
 block discarded – undo
208 208
 	protected function getOptions()
209 209
 	{
210 210
 		return array(
211
-			array( 'password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)' ),
212
-			array( 'admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges' ),
213
-			array( 'api', null, InputOption::VALUE_NONE, 'If account should be able to access the APIs' ),
214
-			array( 'editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges' ),
211
+			array('password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)'),
212
+			array('admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges'),
213
+			array('api', null, InputOption::VALUE_NONE, 'If account should be able to access the APIs'),
214
+			array('editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges'),
215 215
 		);
216 216
 	}
217 217
 }
Please login to merge, or discard this patch.