Completed
Push — master ( 69686b...b3f98f )
by Arman
21s queued 16s
created
src/Libraries/Lang/Lang.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     {
66 66
         $this->isEnabled = filter_var(config()->get('multilang'), FILTER_VALIDATE_BOOLEAN);
67 67
 
68
-        $langSegmentIndex = (int)config()->get(Lang::LANG_SEGMENT);
68
+        $langSegmentIndex = (int) config()->get(Lang::LANG_SEGMENT);
69 69
 
70 70
         if (!empty(route_prefix()) && $langSegmentIndex == 1) {
71 71
             $langSegmentIndex++;
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             throw LangException::misconfiguredDefaultConfig();
78 78
         }
79 79
 
80
-        if (empty($lang) || !in_array($lang, (array)config()->get('langs'))) {
80
+        if (empty($lang) || !in_array($lang, (array) config()->get('langs'))) {
81 81
             $lang = config()->get('lang_default');
82 82
         }
83 83
 
Please login to merge, or discard this patch.
src/Libraries/Mailer/Adapters/SmtpAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         if (config()->get('debug')) {
86 86
             $this->mailer->SMTPDebug = SMTP::DEBUG_SERVER;
87 87
 
88
-            $this->mailer->Debugoutput = function ($message) {
88
+            $this->mailer->Debugoutput = function($message) {
89 89
                 warning($message, ['tab' => Debugger::MAILS]);
90 90
             };
91 91
         }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
      */
188 188
     public function setAttachment(string $attachment): SmtpAdapter
189 189
     {
190
-        $this->attachments[] = $attachment;;
190
+        $this->attachments[] = $attachment; ;
191 191
         return $this;
192 192
     }
193 193
 
Please login to merge, or discard this patch.
src/Http/Request/HttpRequest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
         self::$__query = self::$server->query();
103 103
 
104
-        self::$__headers = array_change_key_case((array)getallheaders());
104
+        self::$__headers = array_change_key_case((array) getallheaders());
105 105
 
106 106
         list('params' => $params, 'files' => $files) = self::parsedParams();
107 107
 
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
         $csrfToken = null;
253 253
 
254 254
         if (self::has(Csrf::TOKEN_KEY)) {
255
-            $csrfToken = (string)self::get(Csrf::TOKEN_KEY);
255
+            $csrfToken = (string) self::get(Csrf::TOKEN_KEY);
256 256
         } elseif (self::hasHeader('X-' . Csrf::TOKEN_KEY)) {
257 257
             $csrfToken = self::getHeader('X-' . Csrf::TOKEN_KEY);
258 258
         }
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
     {
269 269
         $bearerToken = null;
270 270
 
271
-        $authorization = (string)self::getHeader('Authorization');
271
+        $authorization = (string) self::getHeader('Authorization');
272 272
 
273 273
         if (self::hasHeader('Authorization')) {
274 274
             if (preg_match('/Bearer\s(\S+)/', $authorization, $matches)) {
Please login to merge, or discard this patch.
src/Libraries/HttpClient/HttpClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     {
99 99
         $this->client = new MultiCurl();
100 100
 
101
-        $this->client->complete(function (Curl $instance) {
101
+        $this->client->complete(function(Curl $instance) {
102 102
             $this->handleResponse($instance);
103 103
         });
104 104
 
Please login to merge, or discard this patch.
src/Libraries/Encryption/Adapters/AsymmetricEncryptionAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
      */
63 63
     public function encrypt(string $plain): string
64 64
     {
65
-        if(!$this->publicKey) {
65
+        if (!$this->publicKey) {
66 66
             throw CryptorException::publicKeyNotProvided();
67 67
         }
68 68
 
Please login to merge, or discard this patch.
src/Libraries/Auth/Contracts/AuthServiceInterface.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@
 block discarded – undo
29 29
      */
30 30
     public function get(string $field, ?string $value): ?User;
31 31
 
32
-     /**
33
-     * Add
34
-     * @param array $data
35
-     * @return User
36
-     */
32
+        /**
33
+         * Add
34
+         * @param array $data
35
+         * @return User
36
+         */
37 37
     public function add(array $data): User;
38 38
 
39 39
     /**
Please login to merge, or discard this patch.
src/Libraries/Storage/Adapters/Dropbox/DropboxApp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -273,8 +273,8 @@
 block discarded – undo
273 273
             return false;
274 274
         }
275 275
 
276
-        if(isset($message->error)) {
277
-            $error = (array)$message->error;
276
+        if (isset($message->error)) {
277
+            $error = (array) $message->error;
278 278
 
279 279
             if (!isset($error['.tag']) && !in_array($error['.tag'], self::ACCESS_TOKEN_STATUS)) {
280 280
                 return false;
Please login to merge, or discard this patch.
src/Libraries/Database/Adapters/Idiorm/Statements/Reducer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function select(...$columns): DbalInterface
33 33
     {
34
-        array_walk($columns, function (&$column) {
34
+        array_walk($columns, function(&$column) {
35 35
             if (is_array($column)) {
36 36
                 $column = array_flip($column);
37 37
             }
Please login to merge, or discard this patch.
src/Libraries/Database/Adapters/Sleekdb/Statements/Reducer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function select(...$columns): DbalInterface
33 33
     {
34
-        array_walk($columns, function (&$column) {
34
+        array_walk($columns, function(&$column) {
35 35
             if (is_array($column)) {
36 36
                 $column = array_flip($column);
37 37
             }
Please login to merge, or discard this patch.