Completed
Push — master ( f96cf9...e8ce57 )
by Craig
05:29
created
src/Zikula/CoreBundle/Twig/Extension/CoreExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             return $string;
73 73
         }
74 74
 
75
-        return (bool)$string ? $this->translator->trans('Yes') : $this->translator->trans('No');
75
+        return (bool) $string ? $this->translator->trans('Yes') : $this->translator->trans('No');
76 76
     }
77 77
 
78 78
     /**
Please login to merge, or discard this patch.
src/Zikula/CoreBundle/Helper/BundlesSchemaHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         $res = $qb->execute();
106 106
         foreach ($res->fetchAll() as $row) {
107 107
             if (!array_key_exists($row['bundlename'], $fileExtensions)) {
108
-                $this->removeById((int)$row['id']);
108
+                $this->removeById((int) $row['id']);
109 109
             }
110 110
         }
111 111
 
Please login to merge, or discard this patch.
src/Zikula/CoreBundle/Helper/PersistedBundleHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,8 @@
 block discarded – undo
87 87
             $rows = $conn->executeQuery($sql);
88 88
             foreach ($rows as $row) {
89 89
                 $this->extensionStateMap[$row['name']] = [
90
-                    'state' => (int)$row['state'],
91
-                    'id'    => (int)$row['id'],
90
+                    'state' => (int) $row['state'],
91
+                    'id'    => (int) $row['id'],
92 92
                 ];
93 93
             }
94 94
 
Please login to merge, or discard this patch.