Passed
Push — develop ( aef63b...f332ae )
by Jens
02:30
created
src/images/methods/BoxCrop.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,9 @@
 block discarded – undo
27 27
 
28 28
             // Define which ratio will be used, depending on which is the smallest side
29 29
             $ratio = min($hRatio, $wRatio);
30
-            if ($ratio > 1) $ratio = 1;
30
+            if ($ratio > 1) {
31
+                $ratio = 1;
32
+            }
31 33
 
32 34
             // Define sizes
33 35
             $this->_destWidth = floor($originalWidth * $ratio);
Please login to merge, or discard this patch.
src/images/methods/SmartCrop.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,9 @@
 block discarded – undo
37 37
 
38 38
             // Define which ratio will be used, depending on which is the biggest side
39 39
             $ratio = $wRatio < $hRatio ? $wRatio : $hRatio;
40
-            if ($ratio < 1) $ratio = 1;
40
+            if ($ratio < 1) {
41
+                $ratio = 1;
42
+            }
41 43
 
42 44
             // Calculate the destination width, height, x and y
43 45
             $this->_destWidth = $originalWidth / $ratio;
Please login to merge, or discard this patch.
src/cc/StringUtil.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -78,12 +78,15 @@
 block discarded – undo
78 78
      */
79 79
     public static function humanFileSize($size, $unit = "")
80 80
     {
81
-        if ((!$unit && $size >= 1 << 30) || $unit == "GB")
82
-            return number_format($size / (1 << 30), 2) . "GB";
83
-        if ((!$unit && $size >= 1 << 20) || $unit == "MB")
84
-            return number_format($size / (1 << 20), 2) . "MB";
85
-        if ((!$unit && $size >= 1 << 10) || $unit == "KB")
86
-            return number_format($size / (1 << 10), 2) . "KB";
81
+        if ((!$unit && $size >= 1 << 30) || $unit == "GB") {
82
+                    return number_format($size / (1 << 30), 2) . "GB";
83
+        }
84
+        if ((!$unit && $size >= 1 << 20) || $unit == "MB") {
85
+                    return number_format($size / (1 << 20), 2) . "MB";
86
+        }
87
+        if ((!$unit && $size >= 1 << 10) || $unit == "KB") {
88
+                    return number_format($size / (1 << 10), 2) . "KB";
89
+        }
87 90
 
88 91
         return number_format($size) . " bytes";
89 92
     }
Please login to merge, or discard this patch.
src/images/methods/Watermark.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,7 +63,9 @@  discard block
 block discarded – undo
63 63
          */
64 64
         protected function calculateX($imageResource)
65 65
         {
66
-            if ((int)$this->_x === $this->_x) return $this->_x;
66
+            if ((int)$this->_x === $this->_x) {
67
+                return $this->_x;
68
+            }
67 69
 
68 70
             $x = strtolower($this->_x);
69 71
 
@@ -88,7 +90,9 @@  discard block
 block discarded – undo
88 90
          */
89 91
         public function calculateY($imageResource)
90 92
         {
91
-            if ((int)$this->_y === $this->_y) return $this->_y;
93
+            if ((int)$this->_y === $this->_y) {
94
+                return $this->_y;
95
+            }
92 96
 
93 97
             $y = strtolower($this->_y);
94 98
 
@@ -125,7 +129,9 @@  discard block
 block discarded – undo
125 129
          */
126 130
         public function GetWatermark()
127 131
         {
128
-            if ($this->_watermark == null) throw new \Exception('A watermark is not set. Please supply a \CloudControl\Cms\image\Image using $this->SetWatermark');
132
+            if ($this->_watermark == null) {
133
+                throw new \Exception('A watermark is not set. Please supply a \CloudControl\Cms\image\Image using $this->SetWatermark');
134
+            }
129 135
             return $this->_watermark;
130 136
         }
131 137
 
Please login to merge, or discard this patch.
src/templates/documents.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,8 @@  discard block
 block discarded – undo
20 20
           <i class="fa fa-exclamation-triangle"></i> Search index is no longer in sync with documents.
21 21
           <a href="<?= $request::$subfolders ?><?= $cmsPrefix ?>/search/update-index?returnUrl=<?= urlencode($request::$subfolders . $cmsPrefix . '/documents') ?>" title="Update Index">Update Index</a>
22 22
         </div>
23
-      <?php else : ?>
23
+      <?php else {
24
+    : ?>
24 25
         <div class="message valid">
25 26
           <i class="fa fa-check"></i> Search index is in sync with documents.
26 27
         </div>
@@ -49,7 +50,9 @@  discard block
 block discarded – undo
49 50
           <?php foreach ($documents as $document) : ?>
50 51
             <li class="grid-container">
51 52
                 <?php if ($document->type == 'document') : ?>
52
-                    <?php renderDocument($document, $cmsPrefix, '', $request); ?>
53
+                    <?php renderDocument($document, $cmsPrefix, '', $request);
54
+}
55
+?>
53 56
                 <?php elseif ($document->type == 'folder') : ?>
54 57
                     <?php renderFolder($document, $cmsPrefix, '', true, $request); ?>
55 58
                 <?php endif ?>
Please login to merge, or discard this patch.
src/templates/documents/brick.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,10 @@
 block discarded – undo
14 14
 				<?php if (isset($dynamicBrick)) :
15 15
 					$fieldSlug = $field->slug;
16 16
 					$value = isset($dynamicBrick->fields->$fieldSlug) ? current($dynamicBrick->fields->$fieldSlug) : '';
17
-				else :
17
+				else {
18
+				    :
18 19
 					$value = '';
20
+				}
19 21
 				endif ?>
20 22
 				<?php if ($field->multiple == true && $field->type != 'Rich Text') : ?>
21 23
 				<ul class="grid-wrapper sortable">
Please login to merge, or discard this patch.
src/templates/documents/document-form-form.php 1 patch
Braces   +21 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@  discard block
 block discarded – undo
1 1
 <form method="<?= isset($documentType) ? 'post' : 'get' ?>" onsubmit="return processRtes();" action="<?= isset($formId) ? '#' . $formId : '' ?>">
2 2
     <?php if (!isset($hideTitleAndState)) : ?>
3 3
       <input type="hidden" name="path" value="<?= $request::$get['path'] ?>"/>
4
-    <?php else : ?>
4
+    <?php else {
5
+    : ?>
5 6
       <input type="hidden" name="formId" value="<?= $formId ?>"/>
6 7
       <a name="<?= $formId ?>"></a>
7 8
     <?php endif ?>
@@ -17,15 +18,19 @@  discard block
 block discarded – undo
17 18
                     <input required="required" value="<?=isset($document) ? $document->title : '' ?>"<?= isset($document, $document->title) && !empty($document->title) ? ' readonly="readonly"' : '' ?> type="text" id="title" name="title" placeholder="Title" />
18 19
                 </div>
19 20
 			<?php endif ?>
20
-			<?php $fieldPrefix='fields';?>
21
+			<?php $fieldPrefix='fields';
22
+}
23
+?>
21 24
 			<?php foreach ($documentType->fields as $field) : ?>
22 25
 				<div class="form-element">
23 26
 					<label for="<?=$field->slug?>"><?=$field->title?></label>
24 27
 					<?php if (isset($document)) :
25 28
 						$fieldSlug = $field->slug;
26 29
 						$value = isset($document->fields->$fieldSlug) ? current($document->fields->$fieldSlug) : '';
27
-					else :
30
+					else {
31
+					    :
28 32
 						$value = '';
33
+					}
29 34
 					endif ?>
30 35
 					<?php if ($field->multiple == true && $field->type != 'Rich Text') : ?>
31 36
 					<ul class="grid-wrapper sortable">
@@ -135,8 +140,11 @@  discard block
 block discarded – undo
135 140
 					</ul>
136 141
 					<a class="btn" onclick="addDynamicBrick(this, 'true', 'newBrickDropzone_<?=$static_brick_nr?>');">+</a>
137 142
 					<?php $static_brick_nr += 1?>
138
-				<?php else : ?>
139
-					<?php $fieldPrefix='bricks[' . $brick->slug . '][fields]';?>
143
+				<?php else {
144
+    : ?>
145
+					<?php $fieldPrefix='bricks[' . $brick->slug . '][fields]';
146
+}
147
+?>
140 148
 					<input type="hidden" name="bricks[<?=$brick->slug?>][type]" value="<?=$brick->brickSlug?>" />
141 149
 					<?php foreach ($brick->structure->fields as $field) : ?>
142 150
 						<div class="form-element">
@@ -145,8 +153,10 @@  discard block
 block discarded – undo
145 153
 							$brickSlug = $brick->slug;
146 154
 							$fieldSlug = $field->slug;
147 155
 							$value = isset($document->bricks->$brickSlug->fields->$fieldSlug) ? current($document->bricks->$brickSlug->fields->$fieldSlug) : '';
148
-						else :
156
+						else {
157
+						    :
149 158
 							$value = '';
159
+						}
150 160
 						endif ?>
151 161
 						<?php if ($field->multiple == true && $field->type != 'Rich Text') : ?>
152 162
 						<ul class="grid-wrapper sortable">
@@ -260,7 +270,8 @@  discard block
 block discarded – undo
260 270
 				</ul>
261 271
 			</div>
262 272
 			<?php endif ?>
263
-		<?php else : ?>
273
+		<?php else {
274
+    : ?>
264 275
 		<div class="form-element">
265 276
 			<label for="documentType">Document Type</label>
266 277
 			<select id="documentType" name="documentType">
@@ -277,6 +288,8 @@  discard block
 block discarded – undo
277 288
         <input class="btn" type="submit" name="btn_save_and_publish" value="Save and publish"/>
278 289
       <?php else : ?>
279 290
         <input class="btn" type="submit" value="Create"/>
280
-      <?php endif; ?>
291
+      <?php endif;
292
+}
293
+?>
281 294
   </div>
282 295
 </form>
283 296
\ No newline at end of file
Please login to merge, or discard this patch.