Passed
Push — master ( bc79a5...b222de )
by Anton
02:01
created
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,4 +9,4 @@
 block discarded – undo
9 9
 ini_set('display_errors', true);
10 10
 
11 11
 //Composer
12
-require dirname(__DIR__) . '/vendor/autoload.php';
13 12
\ No newline at end of file
13
+require dirname(__DIR__).'/vendor/autoload.php';
14 14
\ No newline at end of file
Please login to merge, or discard this patch.
src/Command/Migrate/MigrateCommand.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function perform()
25 25
     {
26
-        if (!$this->verifyConfigured() || !$this->verifyEnvironment()) {
26
+        if (!$this->verifyConfigured() || !$this->verifyEnvironment()){
27 27
             return;
28 28
         }
29 29
 
30 30
         $found = false;
31 31
         $count = $this->option('one') ? 1 : PHP_INT_MAX;
32 32
 
33
-        while ($count > 0 && ($migration = $this->migrator->run())) {
33
+        while ($count > 0 && ($migration = $this->migrator->run())){
34 34
             $found = true;
35 35
             $count--;
36 36
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             );
41 41
         }
42 42
 
43
-        if (!$found) {
43
+        if (!$found){
44 44
             $this->writeln("<fg=red>No outstanding migrations were found.</fg=red>");
45 45
         }
46 46
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,14 +23,16 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function perform()
25 25
     {
26
-        if (!$this->verifyConfigured() || !$this->verifyEnvironment()) {
26
+        if (!$this->verifyConfigured() || !$this->verifyEnvironment())
27
+        {
27 28
             return;
28 29
         }
29 30
 
30 31
         $found = false;
31 32
         $count = $this->option('one') ? 1 : PHP_INT_MAX;
32 33
 
33
-        while ($count > 0 && ($migration = $this->migrator->run())) {
34
+        while ($count > 0 && ($migration = $this->migrator->run()))
35
+        {
34 36
             $found = true;
35 37
             $count--;
36 38
 
@@ -40,7 +42,8 @@  discard block
 block discarded – undo
40 42
             );
41 43
         }
42 44
 
43
-        if (!$found) {
45
+        if (!$found)
46
+        {
44 47
             $this->writeln("<fg=red>No outstanding migrations were found.</fg=red>");
45 48
         }
46 49
     }
Please login to merge, or discard this patch.
src/Command/Migrate/AbstractCommand.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     protected function verifyConfigured(): bool
42 42
     {
43
-        if (!$this->migrator->isConfigured()) {
43
+        if (!$this->migrator->isConfigured()){
44 44
             $this->writeln(
45 45
                 "<fg=red>Migrations are not configured yet, run '<info>migrate:init</info>' first.</fg=red>"
46 46
             );
@@ -58,14 +58,14 @@  discard block
 block discarded – undo
58 58
      */
59 59
     protected function verifyEnvironment(): bool
60 60
     {
61
-        if ($this->option('force') || $this->config->isSafe()) {
61
+        if ($this->option('force') || $this->config->isSafe()){
62 62
             //Safe to run
63 63
             return true;
64 64
         }
65 65
 
66 66
         $this->writeln("<fg=red>Confirmation is required to run migrations!</fg=red>");
67 67
 
68
-        if (!$this->askConfirmation()) {
68
+        if (!$this->askConfirmation()){
69 69
             $this->writeln("<comment>Cancelling operation...</comment>");
70 70
 
71 71
             return false;
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,8 @@  discard block
 block discarded – undo
40 40
      */
41 41
     protected function verifyConfigured(): bool
42 42
     {
43
-        if (!$this->migrator->isConfigured()) {
43
+        if (!$this->migrator->isConfigured())
44
+        {
44 45
             $this->writeln(
45 46
                 "<fg=red>Migrations are not configured yet, run '<info>migrate:init</info>' first.</fg=red>"
46 47
             );
@@ -58,14 +59,16 @@  discard block
 block discarded – undo
58 59
      */
59 60
     protected function verifyEnvironment(): bool
60 61
     {
61
-        if ($this->option('force') || $this->config->isSafe()) {
62
+        if ($this->option('force') || $this->config->isSafe())
63
+        {
62 64
             //Safe to run
63 65
             return true;
64 66
         }
65 67
 
66 68
         $this->writeln("<fg=red>Confirmation is required to run migrations!</fg=red>");
67 69
 
68
-        if (!$this->askConfirmation()) {
70
+        if (!$this->askConfirmation())
71
+        {
69 72
             $this->writeln("<comment>Cancelling operation...</comment>");
70 73
 
71 74
             return false;
Please login to merge, or discard this patch.
src/Command/Migrate/StatusCommand.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,18 +27,18 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function perform(FilesInterface $files)
29 29
     {
30
-        if (!$this->verifyConfigured()) {
30
+        if (!$this->verifyConfigured()){
31 31
             return;
32 32
         }
33 33
 
34
-        if (empty($this->migrator->getMigrations())) {
34
+        if (empty($this->migrator->getMigrations())){
35 35
             $this->writeln("<comment>No migrations were found.</comment>");
36 36
 
37 37
             return;
38 38
         }
39 39
 
40 40
         $table = $this->table(['Migration', 'Filename', 'Created at', 'Executed at']);
41
-        foreach ($this->migrator->getMigrations() as $migration) {
41
+        foreach ($this->migrator->getMigrations() as $migration){
42 42
             $filename = (new \ReflectionClass($migration))->getFileName();
43 43
 
44 44
             $state = $migration->getState();
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                 $state->getTimeCreated()->format('Y-m-d H:i:s'),
52 52
                 $state->getStatus() == State::STATUS_PENDING
53 53
                     ? self::PENDING
54
-                    : '<info>' . $state->getTimeExecuted()->format('Y-m-d H:i:s') . '</info>'
54
+                    : '<info>'.$state->getTimeExecuted()->format('Y-m-d H:i:s').'</info>'
55 55
             ]);
56 56
         }
57 57
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,18 +27,21 @@
 block discarded – undo
27 27
      */
28 28
     public function perform(FilesInterface $files)
29 29
     {
30
-        if (!$this->verifyConfigured()) {
30
+        if (!$this->verifyConfigured())
31
+        {
31 32
             return;
32 33
         }
33 34
 
34
-        if (empty($this->migrator->getMigrations())) {
35
+        if (empty($this->migrator->getMigrations()))
36
+        {
35 37
             $this->writeln("<comment>No migrations were found.</comment>");
36 38
 
37 39
             return;
38 40
         }
39 41
 
40 42
         $table = $this->table(['Migration', 'Filename', 'Created at', 'Executed at']);
41
-        foreach ($this->migrator->getMigrations() as $migration) {
43
+        foreach ($this->migrator->getMigrations() as $migration)
44
+        {
42 45
             $filename = (new \ReflectionClass($migration))->getFileName();
43 46
 
44 47
             $state = $migration->getState();
Please login to merge, or discard this patch.
src/Command/Migrate/RollbackCommand.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function perform()
25 25
     {
26
-        if (!$this->verifyConfigured() || !$this->verifyEnvironment()) {
26
+        if (!$this->verifyConfigured() || !$this->verifyEnvironment()){
27 27
             //Making sure we can safely migrate in this environment
28 28
             return;
29 29
         }
30 30
 
31 31
         $found = false;
32 32
         $count = !$this->option('all') ? 1 : PHP_INT_MAX;
33
-        while ($count > 0 && ($migration = $this->migrator->rollback())) {
33
+        while ($count > 0 && ($migration = $this->migrator->rollback())){
34 34
             $found = true;
35 35
             $count--;
36 36
             $this->sprintf(
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
             );
40 40
         }
41 41
 
42
-        if (!$found) {
42
+        if (!$found){
43 43
             $this->writeln("<fg=red>No executed migrations were found.</fg=red>");
44 44
         }
45 45
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,14 +23,16 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function perform()
25 25
     {
26
-        if (!$this->verifyConfigured() || !$this->verifyEnvironment()) {
26
+        if (!$this->verifyConfigured() || !$this->verifyEnvironment())
27
+        {
27 28
             //Making sure we can safely migrate in this environment
28 29
             return;
29 30
         }
30 31
 
31 32
         $found = false;
32 33
         $count = !$this->option('all') ? 1 : PHP_INT_MAX;
33
-        while ($count > 0 && ($migration = $this->migrator->rollback())) {
34
+        while ($count > 0 && ($migration = $this->migrator->rollback()))
35
+        {
34 36
             $found = true;
35 37
             $count--;
36 38
             $this->sprintf(
@@ -39,7 +41,8 @@  discard block
 block discarded – undo
39 41
             );
40 42
         }
41 43
 
42
-        if (!$found) {
44
+        if (!$found)
45
+        {
43 46
             $this->writeln("<fg=red>No executed migrations were found.</fg=red>");
44 47
         }
45 48
     }
Please login to merge, or discard this patch.
src/Command/Database/TableCommand.php 3 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         if (!$schema->exists()) {
45 45
             throw new DBALException(
46
-                "Table {$database->getName()}.{$this->argument('table')} does not exists."
46
+                "table {$database->getName()}.{$this->argument('table')} does not exists."
47 47
             );
48 48
         }
49 49
 
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $database = $dbal->database($this->option('database'));
44 44
         $schema = $database->table($this->argument('table'))->getSchema();
45 45
 
46
-        if (!$schema->exists()) {
46
+        if (!$schema->exists()){
47 47
             throw new DBALException(
48 48
                 "Table {$database->getName()}.{$this->argument('table')} does not exists."
49 49
             );
@@ -57,11 +57,11 @@  discard block
 block discarded – undo
57 57
 
58 58
         $this->describeColumns($schema);
59 59
 
60
-        if (!empty($indexes = $schema->getIndexes())) {
60
+        if (!empty($indexes = $schema->getIndexes())){
61 61
             $this->describeIndexes($database, $indexes);
62 62
         }
63 63
 
64
-        if (!empty($foreignKeys = $schema->getForeignKeys())) {
64
+        if (!empty($foreignKeys = $schema->getForeignKeys())){
65 65
             $this->describeForeignKeys($database, $foreignKeys);
66 66
         }
67 67
 
@@ -81,10 +81,10 @@  discard block
 block discarded – undo
81 81
             'Default Value:'
82 82
         ]);
83 83
 
84
-        foreach ($schema->getColumns() as $column) {
84
+        foreach ($schema->getColumns() as $column){
85 85
             $name = $column->getName();
86 86
 
87
-            if (in_array($column->getName(), $schema->getPrimaryKeys())) {
87
+            if (in_array($column->getName(), $schema->getPrimaryKeys())){
88 88
                 $name = "<fg=magenta>{$name}</fg=magenta>";
89 89
             }
90 90
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         );
114 114
 
115 115
         $indexesTable = $this->table(['Name:', 'Type:', 'Columns:']);
116
-        foreach ($indexes as $index) {
116
+        foreach ($indexes as $index){
117 117
             $indexesTable->addRow([
118 118
                 $index->getName(),
119 119
                 $index->isUnique() ? 'UNIQUE INDEX' : 'INDEX',
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             'On Update:'
145 145
         ]);
146 146
 
147
-        foreach ($foreignKeys as $reference) {
147
+        foreach ($foreignKeys as $reference){
148 148
             $foreignTable->addRow([
149 149
                 $reference->getName(),
150 150
                 $reference->getColumn(),
@@ -168,11 +168,11 @@  discard block
 block discarded – undo
168 168
 
169 169
         $abstractType = $column->getAbstractType();
170 170
 
171
-        if ($column->getSize()) {
171
+        if ($column->getSize()){
172 172
             $type .= " ({$column->getSize()})";
173 173
         }
174 174
 
175
-        if ($abstractType == 'decimal') {
175
+        if ($abstractType == 'decimal'){
176 176
             $type .= " ({$column->getPrecision()}, {$column->getScale()})";
177 177
         }
178 178
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     {
188 188
         $abstractType = $column->getAbstractType();
189 189
 
190
-        if (in_array($abstractType, ['primary', 'bigPrimary'])) {
190
+        if (in_array($abstractType, ['primary', 'bigPrimary'])){
191 191
             $abstractType = "<fg=magenta>{$abstractType}</fg=magenta>";
192 192
         }
193 193
 
@@ -202,11 +202,11 @@  discard block
 block discarded – undo
202 202
     {
203 203
         $defaultValue = $column->getDefaultValue();
204 204
 
205
-        if ($defaultValue instanceof FragmentInterface) {
205
+        if ($defaultValue instanceof FragmentInterface){
206 206
             $defaultValue = "<info>{$defaultValue}</info>";
207 207
         }
208 208
 
209
-        if ($defaultValue instanceof \DateTimeInterface) {
209
+        if ($defaultValue instanceof \DateTimeInterface){
210 210
             $defaultValue = $defaultValue->format('c');
211 211
         }
212 212
 
Please login to merge, or discard this patch.
Braces   +24 added lines, -12 removed lines patch added patch discarded remove patch
@@ -43,7 +43,8 @@  discard block
 block discarded – undo
43 43
         $database = $dbal->database($this->option('database'));
44 44
         $schema = $database->table($this->argument('table'))->getSchema();
45 45
 
46
-        if (!$schema->exists()) {
46
+        if (!$schema->exists())
47
+        {
47 48
             throw new DBALException(
48 49
                 "Table {$database->getName()}.{$this->argument('table')} does not exists."
49 50
             );
@@ -57,11 +58,13 @@  discard block
 block discarded – undo
57 58
 
58 59
         $this->describeColumns($schema);
59 60
 
60
-        if (!empty($indexes = $schema->getIndexes())) {
61
+        if (!empty($indexes = $schema->getIndexes()))
62
+        {
61 63
             $this->describeIndexes($database, $indexes);
62 64
         }
63 65
 
64
-        if (!empty($foreignKeys = $schema->getForeignKeys())) {
66
+        if (!empty($foreignKeys = $schema->getForeignKeys()))
67
+        {
65 68
             $this->describeForeignKeys($database, $foreignKeys);
66 69
         }
67 70
 
@@ -81,10 +84,12 @@  discard block
 block discarded – undo
81 84
             'Default Value:'
82 85
         ]);
83 86
 
84
-        foreach ($schema->getColumns() as $column) {
87
+        foreach ($schema->getColumns() as $column)
88
+        {
85 89
             $name = $column->getName();
86 90
 
87
-            if (in_array($column->getName(), $schema->getPrimaryKeys())) {
91
+            if (in_array($column->getName(), $schema->getPrimaryKeys()))
92
+            {
88 93
                 $name = "<fg=magenta>{$name}</fg=magenta>";
89 94
             }
90 95
 
@@ -113,7 +118,8 @@  discard block
 block discarded – undo
113 118
         );
114 119
 
115 120
         $indexesTable = $this->table(['Name:', 'Type:', 'Columns:']);
116
-        foreach ($indexes as $index) {
121
+        foreach ($indexes as $index)
122
+        {
117 123
             $indexesTable->addRow([
118 124
                 $index->getName(),
119 125
                 $index->isUnique() ? 'UNIQUE INDEX' : 'INDEX',
@@ -144,7 +150,8 @@  discard block
 block discarded – undo
144 150
             'On Update:'
145 151
         ]);
146 152
 
147
-        foreach ($foreignKeys as $reference) {
153
+        foreach ($foreignKeys as $reference)
154
+        {
148 155
             $foreignTable->addRow([
149 156
                 $reference->getName(),
150 157
                 $reference->getColumn(),
@@ -168,11 +175,13 @@  discard block
 block discarded – undo
168 175
 
169 176
         $abstractType = $column->getAbstractType();
170 177
 
171
-        if ($column->getSize()) {
178
+        if ($column->getSize())
179
+        {
172 180
             $type .= " ({$column->getSize()})";
173 181
         }
174 182
 
175
-        if ($abstractType == 'decimal') {
183
+        if ($abstractType == 'decimal')
184
+        {
176 185
             $type .= " ({$column->getPrecision()}, {$column->getScale()})";
177 186
         }
178 187
 
@@ -187,7 +196,8 @@  discard block
 block discarded – undo
187 196
     {
188 197
         $abstractType = $column->getAbstractType();
189 198
 
190
-        if (in_array($abstractType, ['primary', 'bigPrimary'])) {
199
+        if (in_array($abstractType, ['primary', 'bigPrimary']))
200
+        {
191 201
             $abstractType = "<fg=magenta>{$abstractType}</fg=magenta>";
192 202
         }
193 203
 
@@ -202,11 +212,13 @@  discard block
 block discarded – undo
202 212
     {
203 213
         $defaultValue = $column->getDefaultValue();
204 214
 
205
-        if ($defaultValue instanceof FragmentInterface) {
215
+        if ($defaultValue instanceof FragmentInterface)
216
+        {
206 217
             $defaultValue = "<info>{$defaultValue}</info>";
207 218
         }
208 219
 
209
-        if ($defaultValue instanceof \DateTimeInterface) {
220
+        if ($defaultValue instanceof \DateTimeInterface)
221
+        {
210 222
             $defaultValue = $defaultValue->format('c');
211 223
         }
212 224
 
Please login to merge, or discard this patch.
src/Module/Publisher.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -43,18 +43,18 @@  discard block
 block discarded – undo
43 43
         string $destination,
44 44
         string $mergeMode = self::FOLLOW,
45 45
         int $mode = FilesInterface::READONLY
46
-    ) {
47
-        if (!$this->files->isFile($filename)) {
46
+    ){
47
+        if (!$this->files->isFile($filename)){
48 48
             throw new PublishException("Given '{$filename}' is not valid file");
49 49
         }
50 50
 
51
-        if ($this->files->exists($destination)) {
52
-            if ($this->files->md5($destination) == $this->files->md5($filename)) {
51
+        if ($this->files->exists($destination)){
52
+            if ($this->files->md5($destination) == $this->files->md5($filename)){
53 53
                 //Nothing to do
54 54
                 return;
55 55
             }
56 56
 
57
-            if ($mergeMode == self::FOLLOW) {
57
+            if ($mergeMode == self::FOLLOW){
58 58
                 return;
59 59
             }
60 60
         }
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
         string $destination,
76 76
         string $mergeMode = self::REPLACE,
77 77
         int $mode = FilesInterface::READONLY
78
-    ) {
79
-        if (!$this->files->isDirectory($directory)) {
78
+    ){
79
+        if (!$this->files->isDirectory($directory)){
80 80
             throw new PublishException("Given '{$directory}' is not valid directory");
81 81
         }
82 82
 
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
         /**
87 87
          * @var SplFileInfo $file
88 88
          */
89
-        foreach ($finder->getIterator() as $file) {
89
+        foreach ($finder->getIterator() as $file){
90 90
             $this->publish(
91 91
                 (string)$file,
92
-                $destination . '/' . $file->getRelativePathname(),
92
+                $destination.'/'.$file->getRelativePathname(),
93 93
                 $mergeMode,
94 94
                 $mode
95 95
             );
Please login to merge, or discard this patch.
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -44,17 +44,21 @@  discard block
 block discarded – undo
44 44
         string $mergeMode = self::FOLLOW,
45 45
         int $mode = FilesInterface::READONLY
46 46
     ) {
47
-        if (!$this->files->isFile($filename)) {
47
+        if (!$this->files->isFile($filename))
48
+        {
48 49
             throw new PublishException("Given '{$filename}' is not valid file");
49 50
         }
50 51
 
51
-        if ($this->files->exists($destination)) {
52
-            if ($this->files->md5($destination) == $this->files->md5($filename)) {
52
+        if ($this->files->exists($destination))
53
+        {
54
+            if ($this->files->md5($destination) == $this->files->md5($filename))
55
+            {
53 56
                 //Nothing to do
54 57
                 return;
55 58
             }
56 59
 
57
-            if ($mergeMode == self::FOLLOW) {
60
+            if ($mergeMode == self::FOLLOW)
61
+            {
58 62
                 return;
59 63
             }
60 64
         }
@@ -76,7 +80,8 @@  discard block
 block discarded – undo
76 80
         string $mergeMode = self::REPLACE,
77 81
         int $mode = FilesInterface::READONLY
78 82
     ) {
79
-        if (!$this->files->isDirectory($directory)) {
83
+        if (!$this->files->isDirectory($directory))
84
+        {
80 85
             throw new PublishException("Given '{$directory}' is not valid directory");
81 86
         }
82 87
 
@@ -86,7 +91,8 @@  discard block
 block discarded – undo
86 91
         /**
87 92
          * @var SplFileInfo $file
88 93
          */
89
-        foreach ($finder->getIterator() as $file) {
94
+        foreach ($finder->getIterator() as $file)
95
+        {
90 96
             $this->publish(
91 97
                 (string)$file,
92 98
                 $destination . '/' . $file->getRelativePathname(),
Please login to merge, or discard this patch.
src/Http/PaginationFactory.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function createPaginator(string $parameter, int $limit = 25): PaginatorInterface
45 45
     {
46
-        if (!$this->container->has(ServerRequestInterface::class)) {
46
+        if (!$this->container->has(ServerRequestInterface::class)){
47 47
             throw new ScopeException("Unable to create paginator, no request scope found");
48 48
         }
49 49
         /**
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
         //Getting page number
55 55
         $page = 0;
56
-        if (!empty($query[$parameter]) && is_scalar($query[$parameter])) {
56
+        if (!empty($query[$parameter]) && is_scalar($query[$parameter])){
57 57
             $page = (int)$query[$parameter];
58 58
         }
59 59
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,8 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function createPaginator(string $parameter, int $limit = 25): PaginatorInterface
45 45
     {
46
-        if (!$this->container->has(ServerRequestInterface::class)) {
46
+        if (!$this->container->has(ServerRequestInterface::class))
47
+        {
47 48
             throw new ScopeException("Unable to create paginator, no request scope found");
48 49
         }
49 50
         /**
@@ -53,7 +54,8 @@  discard block
 block discarded – undo
53 54
 
54 55
         //Getting page number
55 56
         $page = 0;
56
-        if (!empty($query[$parameter]) && is_scalar($query[$parameter])) {
57
+        if (!empty($query[$parameter]) && is_scalar($query[$parameter]))
58
+        {
57 59
             $page = (int)$query[$parameter];
58 60
         }
59 61
 
Please login to merge, or discard this patch.
tests/Framework/HttpTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     protected function fetchCookies(array $header)
69 69
     {
70 70
         $result = [];
71
-        foreach ($header as $line) {
71
+        foreach ($header as $line){
72 72
             $cookie = explode('=', $line);
73 73
             $result[$cookie[0]] = rawurldecode(substr($cookie[1], 0, strpos($cookie[1], ';')));
74 74
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,8 @@
 block discarded – undo
68 68
     protected function fetchCookies(array $header)
69 69
     {
70 70
         $result = [];
71
-        foreach ($header as $line) {
71
+        foreach ($header as $line)
72
+        {
72 73
             $cookie = explode('=', $line);
73 74
             $result[$cookie[0]] = rawurldecode(substr($cookie[1], 0, strpos($cookie[1], ';')));
74 75
         }
Please login to merge, or discard this patch.