Skip to content

Commit b731e8a

Browse files
olsgreenStyleCIBot
andauthored
Apply fixes from StyleCI (#22)
Co-authored-by: StyleCI Bot <[email protected]>
1 parent 30edb45 commit b731e8a

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

src/Api/Builders/BuilderFlag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
class BuilderFlag
66
{
77
const EXCLUDE_PROPERTY = '__exclude_prop__';
8-
}
8+
}

src/Api/Exceptions/BadRequestException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ public function warningsContain(string $pattern): bool
3838

3939
return false;
4040
}
41-
}
41+
}

src/Api/Exceptions/RateLimitException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
class RateLimitException extends ClientException
88
{
99
/**/
10-
}
10+
}

src/Api/Stock.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ public function create(string $advertiserId, $request): array
5858
* @param string $uuid
5959
* @param $request
6060
*
61-
* @return array
6261
* @throws BadRequestException
62+
*
63+
* @return array
6364
*/
6465
public function update(string $advertiserId, string $uuid, $request): array
6566
{
@@ -73,7 +74,7 @@ public function update(string $advertiserId, string $uuid, $request): array
7374

7475
try {
7576
return $this->_patch(
76-
'/stock/' . $uuid,
77+
'/stock/'.$uuid,
7778
['advertiserId' => $advertiserId],
7879
$request->toJson(),
7980
['Content-Type' => 'application/json']

0 commit comments

Comments
 (0)