Skip to content

Commit 2c6f657

Browse files
committed
cs fixes
1 parent ccdc36d commit 2c6f657

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/SDK/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function __call(string $name, array $arguments)
8686
private function getEndpoint(string $name, array $arguments) : EndpointInterface
8787
{
8888
$namespace = '\\TK\\SDK\\Endpoint';
89-
$endpointClass = $namespace . '\\' . \ucfirst($name);
89+
$endpointClass = $namespace . '\\' . \ucfirst($name);
9090
if (!\in_array($name, self::$validEndpoints, true) || !class_exists($endpointClass)) {
9191
$message = sprintf('%s (%s) is not valid TK API endpoint.', $name, $endpointClass);
9292
throw new BadMethodCallException($message);

src/SDK/ValueObject/CalculateAwardMilesWithTaxParameters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function __construct(string $awardType)
3131
throw new InvalidArgumentException(
3232
'Invalid awardType value. Possible values are "' .
3333
implode(', ', self::$awardTypeEnum) . '"' .
34-
' but provided value is "' . $awardType .'"'
34+
' but provided value is "' . $awardType . '"'
3535
);
3636
}
3737
$this->awardType = $awardType;

src/SDK/ValueObject/GetAvailabilityParameters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private function setRoutingType(string $routingType) : void
3535
throw new InvalidArgumentException(
3636
'Invalid Trip Type. Possible values are "' .
3737
implode(', ', self::$routingTypeEnum) . '"' .
38-
' but provided value is "' . $routingType .'"'
38+
' but provided value is "' . $routingType . '"'
3939
);
4040
}
4141
$this->queryParameters['RoutingType'] = $routingType;

0 commit comments

Comments
 (0)