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

Commit 85d7c52

Browse files
committed
StyleCI
1 parent ca44604 commit 85d7c52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Api/AbstractApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected function post($path, $parameters = [])
7575
}
7676

7777
/**
78-
* Send a PUT request
78+
* Send a PUT request.
7979
*
8080
* @param $path
8181
* @param array $parameters
@@ -89,7 +89,7 @@ protected function put($path, $parameters = [])
8989
}
9090

9191
/**
92-
* Send a DELETE request
92+
* Send a DELETE request.
9393
*
9494
* @param $path
9595
* @param array $parameters

src/Api/Custom.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function __construct(string $endpoint, Magento $magento)
3535
public function __call($method, $args)
3636
{
3737
if (in_array($method, self::HTTP_METHODS)) {
38-
$args[0] = $this->endpoint . ltrim($args[0], '/');
38+
$args[0] = $this->endpoint.ltrim($args[0], '/');
3939
}
4040

4141
return call_user_func_array([$this, $method], $args);

0 commit comments

Comments
 (0)