Passed
Push — master ( fdcf95...dcc4d7 )
by Jean-Christophe
03:10
created
Ajax/ui/properties/Animation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	 * @param string $value default : swing
31 31
 	 */
32 32
 	public function setEasing($value) {
33
-		$this->setParamCtrl("easing", $value, array (
33
+		$this->setParamCtrl("easing", $value, array(
34 34
 				"linear",
35 35
 				"swing",
36 36
 				"easeInQuad",
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 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
 	public function __construct(JsUtils $js) {
18 18
 		parent::__construct($js);
19
-		$this->params=array (
19
+		$this->params=array(
20 20
 				"active" => 0
21 21
 		);
22 22
 		$this->uiName="accordion";
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 	 * @return $this
113 113
 	 */
114 114
 	public function setHeightStyle($value) {
115
-		return $this->setParamCtrl("heightStyle", $value, array (
115
+		return $this->setParamCtrl("heightStyle", $value, array(
116 116
 				"auto",
117 117
 				"fill",
118 118
 				"content"
Please login to merge, or discard this 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/Progressbar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
 	public function __construct(JsUtils $js) {
16 16
 		parent::__construct($js);
17
-		$this->params=array (
17
+		$this->params=array(
18 18
 				"value" => 50 
19 19
 		);
20 20
 		$this->uiName="progressbar";
Please login to merge, or discard this patch.
Ajax/ui/components/Dialog.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@  discard block
 block discarded – undo
12 12
  */
13 13
 class Dialog extends SimpleComponent {
14 14
 	protected $attachTo;
15
-	protected $buttons=array ();
15
+	protected $buttons=array();
16 16
 
17 17
 	public function __construct(JsUtils $js) {
18 18
 		parent::__construct($js);
19
-		$this->params=array (
19
+		$this->params=array(
20 20
 				"dialogClass" => "no-close" 
21 21
 		);
22 22
 		$this->addCancelBtn("Annuler");
@@ -24,12 +24,12 @@  discard block
 block discarded – undo
24 24
 
25 25
 	public function getScript() {
26 26
 		$allParams=$this->params;
27
-		$jsonButtons=array ();
28
-		foreach ( $this->buttons as $button ) {
27
+		$jsonButtons=array();
28
+		foreach ($this->buttons as $button) {
29 29
 			$jsonButtons []=$button->getParams();
30 30
 		}
31 31
 		$allParams ["buttons"]=$jsonButtons;
32
-		$this->jquery_code_for_compile []="$( '" . $this->attachTo . "' ).dialog(" . $this->getParamsAsJSON($allParams) . ");";
32
+		$this->jquery_code_for_compile []="$( '".$this->attachTo."' ).dialog(".$this->getParamsAsJSON($allParams).");";
33 33
 		$result=implode("", $this->jquery_code_for_compile);
34 34
 		$result=str_ireplace("\"%", "", $result);
35 35
 		$result=str_ireplace("%\"", "", $result);
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	}
60 60
 
61 61
 	private function insertBtn($insert, $position=NULL) {
62
-		if ($position != NULL) {
62
+		if ($position!=NULL) {
63 63
 			$this->buttons=array_splice($this->buttons, $position, 0, $insert);
64 64
 		} else {
65 65
 			$this->buttons []=$insert;
Please login to merge, or discard this patch.
Ajax/config/DefaultConfig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 class DefaultConfig extends Config {
8 8
 
9 9
 	public function __construct() {
10
-		parent::__construct(array (
11
-				"formElementsPrefix" => array (
10
+		parent::__construct(array(
11
+				"formElementsPrefix" => array(
12 12
 						"txt" => "input_text",
13 13
 						"btn" => "button",
14 14
 						"ck" => "checkbox",
Please login to merge, or discard this patch.
Ajax/semantic/components/search/SearchResult.php 2 patches
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.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	}
68 68
 
69 69
 	public function fromArray($array) {
70
-		foreach ( $array as $key => $value ) {
70
+		foreach ($array as $key => $value) {
71 71
 			$this->{$key}=$value;
72 72
 		}
73 73
 		return $this;
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
 
80 80
 	public function JsonSerialize() {
81 81
 		$vars=get_object_vars($this);
82
-		$result=array ();
83
-		foreach ( $vars as $k => $v ) {
82
+		$result=array();
83
+		foreach ($vars as $k => $v) {
84 84
 			if (isset($v))
85 85
 				$result[$k]=$v;
86 86
 		}
@@ -89,6 +89,6 @@  discard block
 block discarded – undo
89 89
 
90 90
 	public function search($query, $field="title") {
91 91
 		$value=$this->$field;
92
-		return \stripos($value, $query) !== false;
92
+		return \stripos($value, $query)!==false;
93 93
 	}
94 94
 }
Please login to merge, or discard this patch.
Ajax/semantic/components/search/SearchCategory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	}
25 25
 
26 26
 	public function __toString() {
27
-		$result="\"" . $this->id . "\": { \"name\": \"" . $this->name . "\"," . $this->results . "}";
27
+		$result="\"".$this->id."\": { \"name\": \"".$this->name."\",".$this->results."}";
28 28
 		return $result;
29 29
 	}
30 30
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
 	public function search($query, $field="title") {
59 59
 		$result=$this->results->_search($query, $field);
60
-		if ($result !== false) {
60
+		if ($result!==false) {
61 61
 			return new SearchCategory($this->id, $this->name, $result);
62 62
 		}
63 63
 		return false;
Please login to merge, or discard this patch.
Ajax/semantic/components/search/SearchCategories.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 	private $categories;
7 7
 
8 8
 	public function __construct() {
9
-		$this->categories=array ();
9
+		$this->categories=array();
10 10
 	}
11 11
 
12 12
 	public function add($results, $category) {
@@ -14,17 +14,17 @@  discard block
 block discarded – undo
14 14
 		if (\array_key_exists($category, $this->categories)) {
15 15
 			$this->categories[$category]->addResults($results);
16 16
 		} else {
17
-			$categoryO=new SearchCategory("category" . $count, $category, $results);
17
+			$categoryO=new SearchCategory("category".$count, $category, $results);
18 18
 			$this->categories[$category]=$categoryO;
19 19
 		}
20 20
 		return $this;
21 21
 	}
22 22
 
23 23
 	public function search($query, $field="title") {
24
-		$result=array ();
25
-		foreach ( $this->categories as $category ) {
24
+		$result=array();
25
+		foreach ($this->categories as $category) {
26 26
 			$r=$category->search($query, $field);
27
-			if ($r !== false)
27
+			if ($r!==false)
28 28
 				$result[]=$r;
29 29
 		}
30 30
 		$this->categories=$result;
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	}
33 33
 
34 34
 	public function __toString() {
35
-		return "{\"results\":{" . \implode(",", \array_values($this->categories)) . "}}";
35
+		return "{\"results\":{".\implode(",", \array_values($this->categories))."}}";
36 36
 	}
37 37
 
38 38
 	public function getResponse() {
Please login to merge, or discard this 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.