Passed
Push — master ( dd80fa...a058f0 )
by Tomasz
03:06
created
web/skins/classic/user/js/roll.php 1 patch
Indentation   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -68,13 +68,12 @@
 block discarded – undo
68 68
 
69 69
 <?php
70 70
 /**
71
-  * The OS object holds operating system descriptions
72
-  * @param name is the main title
73
-  * @param subtitle - the subtitle
74
-  * @param path - the path to the scriin-dump image
75
-  * @param signed - if true show information that the module is signed
76
-    
77
-*/
71
+ * The OS object holds operating system descriptions
72
+ * @param name is the main title
73
+ * @param subtitle - the subtitle
74
+ * @param path - the path to the scriin-dump image
75
+ * @param signed - if true show information that the module is signed
76
+ */
78 77
 ?>
79 78
 
80 79
 function OS(name, subtitle, path, signed) {
Please login to merge, or discard this patch.
utils/ocsp_update.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     core\ProfileSilverbullet::triggerNewOCSPStatement($serialRow->serial_number);
24 24
 }
25 25
 
26
- /* 
26
+    /* 
27 27
   * and then writes all recently updated statements to a temporary directory. The 
28 28
   * calling script ocsp_update.sh should then scp all the files to their 
29 29
   * destination.
Please login to merge, or discard this patch.
core/Psr4Autoloader.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -156,8 +156,8 @@
 block discarded – undo
156 156
             // replace namespace separators with directory separators
157 157
             // in the relative class name, append with .php
158 158
             $file = $base_dir
159
-                  . str_replace('\\', '/', $relative_class)
160
-                  . '.php';
159
+                    . str_replace('\\', '/', $relative_class)
160
+                    . '.php';
161 161
 
162 162
             // if the mapped file exists, require it
163 163
             if ($this->requireFile($file)) {
Please login to merge, or discard this patch.
tests/unit/web/lib/admin/storage/SessionStorageTest.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 use web\lib\admin\storage\SessionStorage;
3 3
 
4
-if ( !isset( $_SESSION ) ) $_SESSION = array();
4
+if ( !isset( $_SESSION ) ) {
5
+    $_SESSION = array();
6
+}
5 7
 
6 8
 class SessionStorageTest extends PHPUnit_Framework_TestCase{
7 9
     protected $backupGlobalsBlacklist = array( '_SESSION' );
Please login to merge, or discard this patch.
web/lib/admin/http/AddUserCommand.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
             if(!empty($user->getIdentifier())){
14 14
                 $this->storeInfoMessage(_('User was added successfully!'));
15 15
             }
16
-        }else{
16
+        } else{
17 17
             $this->storeErrorMessage(_('User name or expiry parameters are missing!'));
18 18
         }
19 19
     }
Please login to merge, or discard this patch.
web/lib/admin/domain/PersistentEntity.php 1 patch
Braces   +12 added lines, -5 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
         if(count($this->row) > 0){
152 152
             if(isset($this->row[self::ID])){
153 153
                 $result = $this->executeUpdateQuery();
154
-            }else{
154
+            } else{
155 155
                 $result = $this->executeInsertQuery();
156 156
             }
157 157
         }
@@ -170,8 +170,12 @@  discard block
 block discarded – undo
170 170
         $types = '';
171 171
         $arguments = array();
172 172
         foreach ($this->row as $key => $attribute) {
173
-            if($keyString != "(") $keyString .= " ,";
174
-            if($valueString != "(") $valueString .= " ,";
173
+            if($keyString != "(") {
174
+                $keyString .= " ,";
175
+            }
176
+            if($valueString != "(") {
177
+                $valueString .= " ,";
178
+            }
175 179
             $keyString .= "`" . $key . "`";
176 180
             $valueString .= "?";
177 181
             $types .= $attribute->getType();
@@ -200,8 +204,11 @@  discard block
 block discarded – undo
200 204
         $types = '';
201 205
         $arguments = array();
202 206
         foreach ($this->row as $key => $attribute) {
203
-            if(!empty($updateString)) $updateString .= " ,";
204
-            else $updateString .=" SET ";
207
+            if(!empty($updateString)) {
208
+                $updateString .= " ,";
209
+            } else {
210
+                $updateString .=" SET ";
211
+            }
205 212
             $updateString .= "`" . $key . "`=?";
206 213
             $types .= $attribute->getType();
207 214
             $arguments [] = $attribute->value;
Please login to merge, or discard this patch.
web/lib/admin/utils/CSVParser.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
             $row = str_getcsv($this->rows[$this->index], $this->tokenDelimiter);
109 109
             $this->index++;
110 110
             return $row;
111
-        }else{
111
+        } else{
112 112
             return array();
113 113
         }
114 114
     }
Please login to merge, or discard this patch.
web/lib/admin/storage/SessionStorage.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
                 $_SESSION[self::INDEX][self::SCOPED][$package] = array();
56 56
             }
57 57
             $this->session = &$_SESSION[self::INDEX][self::SCOPED][$package];
58
-        }else{
58
+        } else{
59 59
             $this->session = &$_SESSION[self::INDEX][self::WIDE];
60 60
         }
61 61
         $this->package = $package;
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
                 self::$instance = new self($package);
74 74
             }
75 75
             return self::$instance;
76
-        }else{
76
+        } else{
77 77
             if(!isset(self::$pool[$package])){
78 78
                 self::$pool[$package] = new self($package);
79 79
             } 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     public function get($identifier){
113 113
         if(isset($this->session[$identifier])){
114 114
             return $this->session[$identifier];
115
-        }else{
115
+        } else{
116 116
             return array();
117 117
         }
118 118
     }
Please login to merge, or discard this patch.
web/lib/admin/view/MessageBox.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@
 block discarded – undo
16 16
      */
17 17
     private $box;
18 18
     
19
-   /**
20
-    * 
21
-    * @param string $class
22
-    */
19
+    /**
20
+     * 
21
+     * @param string $class
22
+     */
23 23
     public function __construct($class) {
24 24
         $this->box = new CompositeTag('div');
25 25
         $this->class = $class;
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     public function __toString(){
64 64
         if($this->hasMessages()){
65 65
             return $this->box->__toString();
66
-        }else{
66
+        } else{
67 67
             return '';
68 68
         }
69 69
     }
Please login to merge, or discard this patch.