Completed
Push — master ( 3487f7...e80869 )
by Axel
15:16 queued 11s
created
src/Zikula/CoreBundle/Doctrine/EntityAccess.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,6 +140,6 @@
 block discarded – undo
140 140
         }
141 141
 
142 142
         $class = static::class;
143
-        throw new RuntimeException("Entity \"${class}\" does not have a setter for property \"${name}\". Please add ${setMethod}().");
143
+        throw new RuntimeException("Entity \"${class}\" does not have a setter for property \"${name}\". Please add ${setmethod}().");
144 144
     }
145 145
 }
Please login to merge, or discard this patch.
src/system/GroupsModule/GroupsModuleInstaller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@
 block discarded – undo
47 47
     {
48 48
         switch ($oldVersion) {
49 49
             case '2.4.0': // shipped with Core-1.4.3
50
-                $this->setVar('mailwarning', (bool)$this->getVar('mailwarning'));
51
-                $this->setVar('hideclosed', (bool)$this->getVar('hideclosed'));
50
+                $this->setVar('mailwarning', (bool) $this->getVar('mailwarning'));
51
+                $this->setVar('hideclosed', (bool) $this->getVar('hideclosed'));
52 52
                 $this->setVar('hidePrivate', false);
53 53
                 // no break
54 54
             case '2.4.1':
Please login to merge, or discard this patch.
src/system/SettingsModule/SettingsModuleInstaller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
     {
94 94
         switch ($oldVersion) {
95 95
             case '2.9.11': // shipped with Core-1.4.3
96
-                $this->setSystemVar('UseCompression', (bool)$this->getSystemVar('UseCompression'));
96
+                $this->setSystemVar('UseCompression', (bool) $this->getSystemVar('UseCompression'));
97 97
                 // no break
98 98
             case '2.9.12': // shipped with Core-1.4.4
99 99
                 // reconfigure TZ settings
Please login to merge, or discard this patch.