Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit a40a878

Browse files
ahinkleStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent f577d6f commit a40a878

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/Api/CustomerGroups.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class CustomerGroups extends AbstractApi
1212
*/
1313
public function show($id)
1414
{
15-
return $this->get('/customerGroups/' . $id);
15+
return $this->get('/customerGroups/'.$id);
1616
}
1717

1818
/**
@@ -24,7 +24,7 @@ public function show($id)
2424
*/
2525
public function saveGroup($id, $customerGroupRepositoryV1SavePutBody = [])
2626
{
27-
return $this->put('/customerGroups/' . $id, $customerGroupRepositoryV1SavePutBody);
27+
return $this->put('/customerGroups/'.$id, $customerGroupRepositoryV1SavePutBody);
2828
}
2929

3030
/**
@@ -35,11 +35,11 @@ public function saveGroup($id, $customerGroupRepositoryV1SavePutBody = [])
3535
*/
3636
public function deleteGroup($id)
3737
{
38-
return $this->delete('/customerGroups/' . $id);
38+
return $this->delete('/customerGroups/'.$id);
3939
}
4040

4141
/**
42-
* Save/Create Customer Group
42+
* Save/Create Customer Group.
4343
*
4444
* @param array $customerGroupRepositoryV1SavePutBody
4545
* @return array
@@ -84,10 +84,9 @@ public function default()
8484
*/
8585
public function setDefault($id)
8686
{
87-
return $this->put('/customerGroups/default/' . $id);
87+
return $this->put('/customerGroups/default/'.$id);
8888
}
8989

90-
9190
/**
9291
* Check if customer group can be deleted.
9392
*
@@ -96,6 +95,6 @@ public function setDefault($id)
9695
*/
9796
public function permissions($id)
9897
{
99-
return $this->get('/customerGroups/' . $id . '/permissions');
98+
return $this->get('/customerGroups/'.$id.'/permissions');
10099
}
101100
}

0 commit comments

Comments
 (0)