Skip to content

Commit e559948

Browse files
committed
Fix CS
1 parent 44e7f35 commit e559948

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

pkg/sns/SnsClient.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,6 @@ private function resolveClient(): void
140140
}
141141
}
142142

143-
throw new \LogicException(sprintf(
144-
'The input client must be an instance of "%s" or "%s" or a callable that returns one of those. Got "%s"',
145-
AwsSnsClient::class,
146-
MultiRegionClient::class,
147-
is_object($client) ? get_class($client) : gettype($client)
148-
));
143+
throw new \LogicException(sprintf('The input client must be an instance of "%s" or "%s" or a callable that returns one of those. Got "%s"', AwsSnsClient::class, MultiRegionClient::class, is_object($client) ? get_class($client) : gettype($client)));
149144
}
150145
}

0 commit comments

Comments
 (0)