Completed
Push — master ( 6adf1e...bda9b8 )
by Jean-Christophe
03:12
created
Ajax/ui/properties/Position.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,8 +74,9 @@
 block discarded – undo
74 74
 	protected function setParamCtrl($key, $value, $typeCtrl) {
75 75
 		if (!$typeCtrl($value)) {
76 76
 			throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$key." à la position");
77
-		} else
78
-			$this->setParam($key, $value);
77
+		} else {
78
+					$this->setParam($key, $value);
79
+		}
79 80
 	}
80 81
 
81 82
 	/*
Please login to merge, or discard this patch.
Ajax/ui/components/Accordion.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@
 block discarded – undo
49 49
 	 * @return $this
50 50
 	 */
51 51
 	public function setAnimate($value) {
52
-		if ($value instanceof Animation)
53
-			$value=$value->getParams();
54
-		else if (is_string($value)) {
52
+		if ($value instanceof Animation) {
53
+					$value=$value->getParams();
54
+		} else if (is_string($value)) {
55 55
 			$animation=new Animation();
56 56
 			$animation->setEasing($value);
57 57
 		}
Please login to merge, or discard this patch.
Ajax/ui/components/DialogButton.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,9 @@
 block discarded – undo
15 15
 class DialogButton extends BaseComponent {
16 16
 
17 17
 	private function addFunction($jsCode) {
18
-		if (!Text::startsWith($jsCode, "function"))
19
-			$jsCode="%function(){" . $jsCode . "}%";
18
+		if (!Text::startsWith($jsCode, "function")) {
19
+					$jsCode="%function(){" . $jsCode . "}%";
20
+		}
20 21
 		return $jsCode;
21 22
 	}
22 23
 
Please login to merge, or discard this patch.
Ajax/semantic/components/search/SearchResult.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,8 +81,9 @@
 block discarded – undo
81 81
 		$vars=get_object_vars($this);
82 82
 		$result=array ();
83 83
 		foreach ( $vars as $k => $v ) {
84
-			if (isset($v))
85
-				$result[$k]=$v;
84
+			if (isset($v)) {
85
+							$result[$k]=$v;
86
+			}
86 87
 		}
87 88
 		return $result;
88 89
 	}
Please login to merge, or discard this patch.
Ajax/semantic/components/search/SearchCategories.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,9 @@
 block discarded – undo
24 24
 		$result=array ();
25 25
 		foreach ( $this->categories as $category ) {
26 26
 			$r=$category->search($query, $field);
27
-			if ($r !== false)
28
-				$result[]=$r;
27
+			if ($r !== false) {
28
+							$result[]=$r;
29
+			}
29 30
 		}
30 31
 		$this->categories=$result;
31 32
 		return $this;
Please login to merge, or discard this patch.
Ajax/semantic/components/search/SearchResults.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,8 +38,9 @@  discard block
 block discarded – undo
38 38
 			foreach ( $objects as $object ) {
39 39
 				$this->addResult([ "title" => $object ]);
40 40
 			}
41
-		} else
42
-			$this->elements=\array_merge($this->elements, $objects);
41
+		} else {
42
+					$this->elements=\array_merge($this->elements, $objects);
43
+		}
43 44
 		return $this;
44 45
 	}
45 46
 
@@ -47,8 +48,9 @@  discard block
 block discarded – undo
47 48
 		$result=array ();
48 49
 		foreach ( $this->elements as $element ) {
49 50
 			if ($element instanceof SearchResult) {
50
-				if ($element->search($query, $field) !== false)
51
-					$result[]=$element->asArray();
51
+				if ($element->search($query, $field) !== false) {
52
+									$result[]=$element->asArray();
53
+				}
52 54
 			} else {
53 55
 				if (\array_key_exists($field, $element)) {
54 56
 					$value=$element[$field];
@@ -66,8 +68,9 @@  discard block
 block discarded – undo
66 68
 
67 69
 	public function search($query, $field="title") {
68 70
 		$result=$this->_search($query, $field);
69
-		if ($result === false)
70
-			$result=NULL;
71
+		if ($result === false) {
72
+					$result=NULL;
73
+		}
71 74
 		return new SearchResults($result);
72 75
 	}
73 76
 
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlFormTextarea.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,9 @@
 block discarded – undo
10 10
 	use TextFieldsTrait;
11 11
 
12 12
 	public function __construct($identifier, $label=NULL,$value=NULL,$placeholder=NULL,$rows=NULL) {
13
-		if(!isset($placeholder))
14
-			$placeholder=$label;
13
+		if(!isset($placeholder)) {
14
+					$placeholder=$label;
15
+		}
15 16
 		parent::__construct("field-".$identifier, new HtmlTextarea($identifier,$value,$placeholder,$rows), $label);
16 17
 	}
17 18
 
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlBreadcrumb.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -181,9 +181,9 @@
 block discarded – undo
181 181
 	protected function createItem($value) {
182 182
 		$count=$this->count();
183 183
 		$itemO=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "a", "section");
184
-		if (\is_array($value))
185
-			$itemO->fromArray($value);
186
-		else {
184
+		if (\is_array($value)) {
185
+					$itemO->fromArray($value);
186
+		} else {
187 187
 			$itemO->setContent($value);
188 188
 		}
189 189
 		return $itemO;
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlGrid.php 1 patch
Braces   +21 added lines, -14 removed lines patch added patch discarded remove patch
@@ -81,8 +81,9 @@  discard block
 block discarded – undo
81 81
 	public function addCol($width=NULL) {
82 82
 		$colCount=$this->colCount() + 1;
83 83
 		$this->setColsCount($colCount, true, $width);
84
-		if ($this->hasOnlyCols($this->count()))
85
-			return $this->content[$colCount - 1];
84
+		if ($this->hasOnlyCols($this->count())) {
85
+					return $this->content[$colCount - 1];
86
+		}
86 87
 		return $this;
87 88
 	}
88 89
 
@@ -170,8 +171,9 @@  discard block
 block discarded – undo
170 171
 	 */
171 172
 	public function rowCount() {
172 173
 		$count=$this->count();
173
-		if ($this->hasOnlyCols($count))
174
-			return 0;
174
+		if ($this->hasOnlyCols($count)) {
175
+					return 0;
176
+		}
175 177
 		return $count;
176 178
 	}
177 179
 
@@ -181,10 +183,12 @@  discard block
 block discarded – undo
181 183
 	 */
182 184
 	public function colCount() {
183 185
 		$count=$this->count();
184
-		if ($this->hasOnlyCols($count))
185
-			return $count;
186
-		if ($count > 0)
187
-			return $this->getItem(0)->count();
186
+		if ($this->hasOnlyCols($count)) {
187
+					return $count;
188
+		}
189
+		if ($count > 0) {
190
+					return $this->getItem(0)->count();
191
+		}
188 192
 		return 0;
189 193
 	}
190 194
 
@@ -195,8 +199,9 @@  discard block
 block discarded – undo
195 199
 	 * @return \Ajax\semantic\html\collections\HtmlGridCol
196 200
 	 */
197 201
 	public function getCell($row, $col) {
198
-		if ($row < 2 && $this->hasOnlyCols($this->count()))
199
-			return $this->getItem($col);
202
+		if ($row < 2 && $this->hasOnlyCols($this->count())) {
203
+					return $this->getItem($col);
204
+		}
200 205
 		$row=$this->getItem($row);
201 206
 		if (isset($row)) {
202 207
 			$col=$row->getItem($col);
@@ -245,8 +250,9 @@  discard block
 block discarded – undo
245 250
 	 * @return \Ajax\semantic\html\collections\HtmlGrid
246 251
 	 */
247 252
 	public function setPadded($value=NULL) {
248
-		if (isset($value))
249
-			$this->addToPropertyCtrl("class", $value, array ("vertically","horizontally" ));
253
+		if (isset($value)) {
254
+					$this->addToPropertyCtrl("class", $value, array ("vertically","horizontally" ));
255
+		}
250 256
 		return $this->addToProperty("class", "padded");
251 257
 	}
252 258
 
@@ -271,8 +277,9 @@  discard block
 block discarded – undo
271 277
 	 * @see \Ajax\common\html\HtmlCollection::createItem()
272 278
 	 */
273 279
 	protected function createItem($value) {
274
-		if ($this->_createCols === false)
275
-			$value=null;
280
+		if ($this->_createCols === false) {
281
+					$value=null;
282
+		}
276 283
 		$item=new HtmlGridRow($this->identifier . "-row-" . ($this->count() + 1), $value, $this->_colSizing, $this->_implicitRows);
277 284
 		return $item;
278 285
 	}
Please login to merge, or discard this patch.