Completed
Push — master ( 2719a3...2c01a5 )
by Jean-Christophe
02:54
created
Ajax/common/html/HtmlCollection.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Ajax\common\html\HtmlDoubleElement;
6 6
 use Ajax\service\JArray;
7
-use Ajax\JsUtils;
8 7
 
9 8
 /**
10 9
  * Base class for Html collections
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 			foreach ($items as $k=>$v){
24 24
 				$this->addItem([$k,$v]);
25 25
 			}
26
-		}else{
26
+		} else{
27 27
 			foreach ($items as $item){
28 28
 				$this->addItem($item);
29 29
 			}
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
 	 * @return \Ajax\common\html\HtmlDoubleElement
72 72
 	 */
73 73
 	public function getItem($index) {
74
-		if (is_int($index))
75
-			return $this->content[$index];
76
-		else {
74
+		if (is_int($index)) {
75
+					return $this->content[$index];
76
+		} else {
77 77
 			$elm=$this->getElementById($index, $this->content);
78 78
 			return $elm;
79 79
 		}
Please login to merge, or discard this patch.
Ajax/semantic/html/modules/HtmlProgress.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Ajax\semantic\html\base\HtmlSemDoubleElement;
6 6
 use Ajax\JsUtils;
7 7
 use Ajax\service\JArray;
8
-
9 8
 use Ajax\semantic\html\base\constants\State;
10 9
 
11 10
 class HtmlProgress extends HtmlSemDoubleElement {
Please login to merge, or discard this patch.
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,11 +13,13 @@  discard block
 block discarded – undo
13 13
 
14 14
 	public function __construct($identifier, $value=NULL, $label=NULL, $attributes=array()) {
15 15
 		parent::__construct($identifier, "div", "ui progress");
16
-		if (isset($value) === true)
17
-			$this->setProperty("data-percent", $value);
16
+		if (isset($value) === true) {
17
+					$this->setProperty("data-percent", $value);
18
+		}
18 19
 		$this->createBar();
19
-		if (isset($label) === true)
20
-			$this->setLabel($label);
20
+		if (isset($label) === true) {
21
+					$this->setLabel($label);
22
+		}
21 23
 		$this->_states=[ State::SUCCESS,State::WARNING,State::ERROR,State::ACTIVE,State::DISABLED ];
22 24
 		$this->addToProperty("class", $attributes);
23 25
 	}
@@ -116,8 +118,9 @@  discard block
 block discarded – undo
116 118
 	 * @see BaseHtml::run()
117 119
 	 */
118 120
 	public function run(JsUtils $js) {
119
-		if (isset($this->_bsComponent) === false)
120
-			$this->_bsComponent=$js->semantic()->progress("#" . $this->identifier, $this->_params);
121
+		if (isset($this->_bsComponent) === false) {
122
+					$this->_bsComponent=$js->semantic()->progress("#" . $this->identifier, $this->_params);
123
+		}
121 124
 		$this->addEventsOnRun($js);
122 125
 		return $this->_bsComponent;
123 126
 	}
Please login to merge, or discard this patch.
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/HtmlTable.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,8 +191,9 @@
 block discarded – undo
191 191
 	}
192 192
 
193 193
 	public function setBasic($very=false) {
194
-		if ($very)
195
-			$this->addToPropertyCtrl("class", "very", array ("very" ));
194
+		if ($very) {
195
+					$this->addToPropertyCtrl("class", "very", array ("very" ));
196
+		}
196 197
 		return $this->addToPropertyCtrl("class", "basic", array ("basic" ));
197 198
 	}
198 199
 
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Ajax\semantic\html\base\HtmlSemDoubleElement;
6 6
 use Ajax\JsUtils;
7 7
 use Ajax\service\JArray;
8
-
9 8
 use Ajax\semantic\html\base\constants\State;
10 9
 
11 10
 class HtmlProgress extends HtmlSemDoubleElement {
Please login to merge, or discard this patch.