Completed
Pull Request — develop (#86)
by Igor
03:56
created
src/Magestead/Exceptions/AuthSavePermissionsException.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  */
7 7
 class AuthSavePermissionsException extends \RuntimeException
8 8
 {
9
-    const TPL = "\n\nFile auth.json is not writable. Please add the following content manually: \n%s\n";
9
+    const TPL="\n\nFile auth.json is not writable. Please add the following content manually: \n%s\n";
10 10
 
11 11
     /**
12 12
      * @param array $auth
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      */
15 15
     public function setAuthObject(array $auth)
16 16
     {
17
-        $this->message = sprintf(static::TPL, json_encode($auth, JSON_PRETTY_PRINT));
17
+        $this->message=sprintf(static::TPL, json_encode($auth, JSON_PRETTY_PRINT));
18 18
         return $this;
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
      * @param array $auth
13 13
      * @return self
14 14
      */
15
-    public function setAuthObject(array $auth)
16
-    {
15
+    public function setAuthObject(array $auth) {
17 16
         $this->message = sprintf(static::TPL, json_encode($auth, JSON_PRETTY_PRINT));
18 17
         return $this;
19 18
     }
Please login to merge, or discard this patch.