@@ -72,7 +72,7 @@ |
||
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 | /** |
@@ -105,7 +105,7 @@ |
||
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 |
@@ -87,8 +87,8 @@ |
||
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 |