Passed
Pull Request — master (#182)
by Arman
12:44 queued 09:39
created
src/Libraries/Storage/Adapters/Dropbox/DropboxApp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -300,7 +300,7 @@
 block discarded – undo
300 300
             return false;
301 301
         }
302 302
 
303
-        $error = (array)$message->error;
303
+        $error = (array) $message->error;
304 304
 
305 305
         if (!isset($error['.tag']) && !in_array($error['.tag'], self::ACCESS_TOKEN_STATUS)) {
306 306
             return false;
Please login to merge, or discard this patch.
src/Libraries/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     public function get(string $filename)
89 89
     {
90 90
         try {
91
-            return (string)$this->dropboxApp->contentRequest(DropboxApp::ENDPOINT_DOWNLOAD_FILE, $this->dropboxApp->path($filename));
91
+            return (string) $this->dropboxApp->contentRequest(DropboxApp::ENDPOINT_DOWNLOAD_FILE, $this->dropboxApp->path($filename));
92 92
         } catch (Exception $e) {
93 93
             return false;
94 94
         }
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     public function size(string $filename)
169 169
     {
170 170
         try {
171
-            $meta = (array)$this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename));
171
+            $meta = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename));
172 172
             return $meta['size'];
173 173
         } catch (Exception $e) {
174 174
             return false;
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     public function lastModified(string $filename)
182 182
     {
183 183
         try {
184
-            $meta = (array)$this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename));
184
+            $meta = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename));
185 185
             return isset($meta['server_modified']) ? strtotime($meta['server_modified']) : false;
186 186
         } catch (Exception $e) {
187 187
             return false;
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
     public function isFile(string $filename): bool
210 210
     {
211 211
         try {
212
-            $meta = (array)$this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename));
212
+            $meta = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename));
213 213
             return $meta['.tag'] == 'file';
214 214
         } catch (Exception $e) {
215 215
             return false;
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     public function isDirectory(string $dirname): bool
224 224
     {
225 225
         try {
226
-            $meta = (array)$this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($dirname));
226
+            $meta = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($dirname));
227 227
             return $meta['.tag'] == 'folder';
228 228
         } catch (Exception $e) {
229 229
             return false;
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     public function listDirectory(string $dirname)
237 237
     {
238 238
         try {
239
-            $response = (array)$this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_LIST_FOLDER, $this->dropboxApp->path($dirname));
239
+            $response = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_LIST_FOLDER, $this->dropboxApp->path($dirname));
240 240
             return $response['entries'];
241 241
         } catch (Exception $e) {
242 242
             return false;
Please login to merge, or discard this patch.
src/Libraries/Storage/UploadedFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -362,7 +362,7 @@
 block discarded – undo
362 362
     protected function moveUploadedFile(string $filePath): bool
363 363
     {
364 364
         if ($this->remoteFileSystem) {
365
-            return (bool)$this->remoteFileSystem->put($filePath, $this->localFileSystem->get($this->getPathname()));
365
+            return (bool) $this->remoteFileSystem->put($filePath, $this->localFileSystem->get($this->getPathname()));
366 366
         } else {
367 367
             if ($this->isUploaded()) {
368 368
                 return move_uploaded_file($this->getPathname(), $filePath);
Please login to merge, or discard this patch.
src/Console/Commands/KeyGenerateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
      */
86 86
     private function generateRandomKey(): string
87 87
     {
88
-        return bin2hex(random_bytes((int)$this->getOption('length')));
88
+        return bin2hex(random_bytes((int) $this->getOption('length')));
89 89
     }
90 90
 
91 91
 }
Please login to merge, or discard this patch.
src/Libraries/Storage/Adapters/Local/LocalFileSystemAdapter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
     {
210 210
         $lines = file($filename, FILE_IGNORE_NEW_LINES);
211 211
 
212
-        if(!$lines) {
212
+        if (!$lines) {
213 213
             return [];
214 214
         }
215 215
 
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      */
228 228
     public function fileName(string $path): string
229 229
     {
230
-        return (string)pathinfo($path, PATHINFO_FILENAME);
230
+        return (string) pathinfo($path, PATHINFO_FILENAME);
231 231
     }
232 232
 
233 233
     /**
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      */
238 238
     public function extension(string $path): string
239 239
     {
240
-        return (string)pathinfo($path, PATHINFO_EXTENSION);
240
+        return (string) pathinfo($path, PATHINFO_EXTENSION);
241 241
     }
242 242
 
243 243
     /**
Please login to merge, or discard this patch.
src/Libraries/Captcha/Adapters/BaseCaptcha.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,8 +124,9 @@
 block discarded – undo
124 124
      */
125 125
     public function verify(string $code): bool
126 126
     {
127
-        if (is_null($this->secretKey))
128
-            throw new Exception('The secret key is not set');
127
+        if (is_null($this->secretKey)) {
128
+                    throw new Exception('The secret key is not set');
129
+        }
129 130
 
130 131
         if (empty($code)) {
131 132
             $this->errorCodes = ['internal-empty-response'];
Please login to merge, or discard this patch.
src/Router/Router.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
         $this->matchedRoutes = $this->findMatches($uri);
103 103
 
104 104
         if (empty($this->matchedRoutes)) {
105
-            stop(function () {
105
+            stop(function() {
106 106
                 $this->handleNotFound();
107 107
             });
108 108
         }
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
         $routePattern = '(\/)?';
204 204
         $routeParams = [];
205 205
 
206
-        $lastIndex = (int)array_key_last($routeSegments);
206
+        $lastIndex = (int) array_key_last($routeSegments);
207 207
 
208 208
         foreach ($routeSegments as $index => $segment) {
209 209
             $segmentParam = $this->getSegmentParam($segment, $index, $lastIndex);
Please login to merge, or discard this patch.
src/Libraries/Database/PaginatorInterface.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -4,35 +4,35 @@
 block discarded – undo
4 4
 
5 5
 interface PaginatorInterface
6 6
 {
7
-	public function getPagination(bool $withBaseUrl): ?string;
7
+    public function getPagination(bool $withBaseUrl): ?string;
8 8
 
9
-	public function currentPageNumber(): int;
9
+    public function currentPageNumber(): int;
10 10
 
11
-	public function currentPageLink(bool $withBaseUrl): ?string;
11
+    public function currentPageLink(bool $withBaseUrl): ?string;
12 12
 
13
-	public function previousPageLink(bool $withBaseUrl): ?string;
13
+    public function previousPageLink(bool $withBaseUrl): ?string;
14 14
 
15
-	public function previousPageNumber(): ?int;
15
+    public function previousPageNumber(): ?int;
16 16
 
17
-	public function firstPageLink(bool $withBaseUrl): ?string;
17
+    public function firstPageLink(bool $withBaseUrl): ?string;
18 18
 
19
-	public function nextPageLink(bool $withBaseUrl): ?string;
19
+    public function nextPageLink(bool $withBaseUrl): ?string;
20 20
 
21
-	public function nextPageNumber(): ?int;
21
+    public function nextPageNumber(): ?int;
22 22
 
23
-	public function lastPageLink(bool $withBaseUrl): ?string;
23
+    public function lastPageLink(bool $withBaseUrl): ?string;
24 24
 	
25
-	public function lastPageNumber();
25
+    public function lastPageNumber();
26 26
 
27
-	public function firstItem();
27
+    public function firstItem();
28 28
 
29
-	public function lastItem();
29
+    public function lastItem();
30 30
 
31
-	public function perPage();
31
+    public function perPage();
32 32
 
33
-	public function total();
33
+    public function total();
34 34
 
35
-	public function links(bool $withBaseUrl);
35
+    public function links(bool $withBaseUrl);
36 36
 
37
-	public function data();
37
+    public function data();
38 38
 }
Please login to merge, or discard this patch.
src/Libraries/Database/Sleekdb/Paginator.php 2 patches
Indentation   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -11,67 +11,67 @@
 block discarded – undo
11 11
 
12 12
 class Paginator extends BasePaginator
13 13
 {
14
-	/**
15
-	 * @var SleekDbal
16
-	 */
17
-	private $dbal;
14
+    /**
15
+     * @var SleekDbal
16
+     */
17
+    private $dbal;
18 18
 
19
-	/**
20
-	 * @var array
21
-	 */
22
-	public $data;
19
+    /**
20
+     * @var array
21
+     */
22
+    public $data;
23 23
 
24
-	/**
25
-	 * @param $sleekDbal
26
-	 * @param int $perPage
27
-	 * @param int $page
28
-	 * @throws DatabaseException
29
-	 * @throws ModelException
30
-	 * @throws IOException
31
-	 * @throws InvalidArgumentException
32
-	 * @throws InvalidConfigurationException
33
-	 */
34
-	public function __construct($sleekDbal, int $perPage, int $page = 1)
35
-	{
36
-		/** @var SleekDbal $sleekDbal */
37
-		$this->total = count($sleekDbal->getBuilder()->getQuery()->fetch());
38
-		$this->dbal = $sleekDbal;
39
-		$this->dbal->limit($perPage)->offset($perPage * ($page - 1));
40
-		$this->data = $this->dbal->getBuilder()->getQuery()->fetch();
41
-		$this->perPage = $perPage;
42
-		$this->page = $page;
43
-		$this->baseUrl = base_url();
44
-	}
24
+    /**
25
+     * @param $sleekDbal
26
+     * @param int $perPage
27
+     * @param int $page
28
+     * @throws DatabaseException
29
+     * @throws ModelException
30
+     * @throws IOException
31
+     * @throws InvalidArgumentException
32
+     * @throws InvalidConfigurationException
33
+     */
34
+    public function __construct($sleekDbal, int $perPage, int $page = 1)
35
+    {
36
+        /** @var SleekDbal $sleekDbal */
37
+        $this->total = count($sleekDbal->getBuilder()->getQuery()->fetch());
38
+        $this->dbal = $sleekDbal;
39
+        $this->dbal->limit($perPage)->offset($perPage * ($page - 1));
40
+        $this->data = $this->dbal->getBuilder()->getQuery()->fetch();
41
+        $this->perPage = $perPage;
42
+        $this->page = $page;
43
+        $this->baseUrl = base_url();
44
+    }
45 45
 
46
-	/**
47
-	 * @return mixed
48
-	 */
49
-	public function firstItem()
50
-	{
51
-		return $this->data[array_key_first($this->data)];
52
-	}
46
+    /**
47
+     * @return mixed
48
+     */
49
+    public function firstItem()
50
+    {
51
+        return $this->data[array_key_first($this->data)];
52
+    }
53 53
 
54
-	/**
55
-	 * @return mixed
56
-	 */
57
-	public function lastItem()
58
-	{
59
-		return $this->data[array_key_last($this->data)];
60
-	}
54
+    /**
55
+     * @return mixed
56
+     */
57
+    public function lastItem()
58
+    {
59
+        return $this->data[array_key_last($this->data)];
60
+    }
61 61
 
62
-	/**
63
-	 * @return array|SleekDbal[]
64
-	 */
65
-	public function data(): array
66
-	{
67
-		$result = array_map(function ($element) {
68
-			$item = clone $this->dbal;
69
-			$item->setData($element);
70
-			$item->setModifiedFields($element);
71
-			$item->setIsNew(false);
72
-			return $item;
73
-		}, $this->data);
62
+    /**
63
+     * @return array|SleekDbal[]
64
+     */
65
+    public function data(): array
66
+    {
67
+        $result = array_map(function ($element) {
68
+            $item = clone $this->dbal;
69
+            $item->setData($element);
70
+            $item->setModifiedFields($element);
71
+            $item->setIsNew(false);
72
+            return $item;
73
+        }, $this->data);
74 74
 
75
-		return $result ?? [];
76
-	}
75
+        return $result ?? [];
76
+    }
77 77
 }
78 78
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 	 */
65 65
 	public function data(): array
66 66
 	{
67
-		$result = array_map(function ($element) {
67
+		$result = array_map(function($element) {
68 68
 			$item = clone $this->dbal;
69 69
 			$item->setData($element);
70 70
 			$item->setModifiedFields($element);
Please login to merge, or discard this patch.