Completed
Pull Request — development (#691)
by Nick
04:51 queued 45s
created
htdocs/src/Oc/FieldNotes/Persistence/FieldNoteRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             ->from(self::TABLE);
84 84
 
85 85
         foreach ($where as $column => $value) {
86
-            $queryBuilder->andWhere($column . ' = ' .  $queryBuilder->createNamedParameter($value));
86
+            $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value));
87 87
         }
88 88
 
89 89
         foreach ($order as $field => $direction) {
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
         if (count($where) > 0) {
127 127
             foreach ($where as $column => $value) {
128
-                $queryBuilder->andWhere($column . ' = ' .  $queryBuilder->createNamedParameter($value));
128
+                $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value));
129 129
             }
130 130
         }
131 131
 
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
             $databaseArray
193 193
         );
194 194
 
195
-        $entity->id = (int) $this->connection->lastInsertId();
195
+        $entity->id = (int)$this->connection->lastInsertId();
196 196
 
197 197
         return $entity;
198 198
     }
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
             ['id' => $entity->id]
221 221
         );
222 222
 
223
-        $entity->id = (int) $this->connection->lastInsertId();
223
+        $entity->id = (int)$this->connection->lastInsertId();
224 224
 
225 225
         return $entity;
226 226
     }
Please login to merge, or discard this patch.
htdocs/okapi/meta.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php return array (
2
-  'version_number' => 1684,
3
-  'git_revision' => '8b1f529bf3f46aaad59ca83f0f95b37c20e71fa0',
2
+    'version_number' => 1684,
3
+    'git_revision' => '8b1f529bf3f46aaad59ca83f0f95b37c20e71fa0',
4 4
 );
5 5
\ 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
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php return array (
1
+<?php return array(
2 2
   'version_number' => 1684,
3 3
   'git_revision' => '8b1f529bf3f46aaad59ca83f0f95b37c20e71fa0',
4 4
 );
5 5
\ No newline at end of file
Please login to merge, or discard this patch.
htdocs/src/Oc/Command/CreateWebCacheCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
          */
102 102
         foreach ($rii as $file) {
103 103
 
104
-            if ($file->isDir() || $file->getExtension() !== 'js'){
104
+            if ($file->isDir() || $file->getExtension() !== 'js') {
105 105
                 continue;
106 106
             }
107 107
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         $scss = new Compiler();
130 130
         $scss->setIgnoreErrors(true);
131 131
         $scss->addImportPath($applicationScssPath);
132
-        $scss->addImportPath(function ($path) use ($projectDir) {
132
+        $scss->addImportPath(function($path) use ($projectDir) {
133 133
             //Check for tilde as this refers to the node_modules dir
134 134
             if (strpos($path, '~') === 0) {
135 135
                 $path = str_replace(
Please login to merge, or discard this patch.