From 178da5470368b649aabb027a000e79fc4ec1d723 Mon Sep 17 00:00:00 2001 From: Adrian Date: Wed, 20 Sep 2017 18:46:11 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Exceptions/InvalidFactomApiConfig.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Exceptions/InvalidFactomApiConfig.php b/src/Exceptions/InvalidFactomApiConfig.php index 217612b..07f9e32 100644 --- a/src/Exceptions/InvalidFactomApiConfig.php +++ b/src/Exceptions/InvalidFactomApiConfig.php @@ -45,7 +45,7 @@ public static function noCertificateExists() { return new static('Can\'t find provided certificate file'); } - + /** * @return static */ @@ -53,7 +53,7 @@ public static function noUsernameDefined() { return new static('You must provide a password with a username'); } - + /** * @return static */ @@ -61,7 +61,7 @@ public static function noPasswordDefined() { return new static('You must provide a username with a password'); } - + /** * @return static */ @@ -69,7 +69,7 @@ public static function invalidMethodCalled() { return new static('Supplied method must match GET or POST'); } - + /** * @return static */ @@ -77,7 +77,7 @@ public static function invalidApiResponse(string $error, string $actionName) { return new static('Received error "'.$error.'" when hitting "'.$actionName.'" within the Factom API'); } - + /** * @return static */