Completed
Push — master ( c44f15...422a34 )
by Jean-Christophe
03:19
created
Ajax/bootstrap/html/HtmlCarousel.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Ajax\bootstrap\html\base\CssRef;
8 8
 use Ajax\bootstrap\html\base\HtmlBsDoubleElement;
9 9
 use Ajax\bootstrap\html\content\HtmlCarouselItem;
10
-
11 10
 use Ajax\common\html\BaseHtml;
12 11
 /**
13 12
  * Composant Twitter Bootstrap Carousel
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlProgressbar.php 1 patch
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\bootstrap\html\base\HtmlBsDoubleElement;
6 6
 use Ajax\JsUtils;
7
-
8 7
 use Ajax\bootstrap\html\base\CssRef;
9 8
 use Ajax\service\JArray;
10 9
 
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlFormFields.php 1 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\HtmlSemCollection;
6 6
 use Ajax\semantic\html\base\constants\Wide;
7 7
 use Ajax\JsUtils;
8
-
9 8
 use Ajax\semantic\html\base\HtmlSemDoubleElement;
10 9
 use Ajax\semantic\html\collections\form\traits\FieldsTrait;
11 10
 
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlBreadcrumb.php 1 patch
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\semantic\html\base\HtmlSemNavElement;
6 6
 use Ajax\semantic\html\base\HtmlSemDoubleElement;
7
-
8 7
 use Ajax\semantic\html\elements\HtmlIcon;
9 8
 use Ajax\JsUtils;
10 9
 
Please login to merge, or discard this patch.
Ajax/semantic/html/content/HtmlAbsractItem.php 1 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\semantic\html\elements\HtmlIcon;
7 7
 use Ajax\JsUtils;
8
-
9 8
 use Ajax\service\JArray;
10 9
 use Ajax\semantic\html\elements\html5\HtmlImg;
11 10
 
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlAccordion.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -50,14 +50,14 @@
 block discarded – undo
50 50
 	}
51 51
 
52 52
 		/**
53
-	 * render the content of $controller::$action and set the response to a new panel
54
-	 * @param JsUtils $js
55
-	 * @param string $title The panel title
56
-	 * @param Controller $initialController
57
-	 * @param string $controller a Phalcon controller
58
-	 * @param string $action a Phalcon action
59
-	 * @param array $params
60
-	 */
53
+		 * render the content of $controller::$action and set the response to a new panel
54
+		 * @param JsUtils $js
55
+		 * @param string $title The panel title
56
+		 * @param Controller $initialController
57
+		 * @param string $controller a Phalcon controller
58
+		 * @param string $action a Phalcon action
59
+		 * @param array $params
60
+		 */
61 61
 	public function forwardPanel(JsUtils $js,$title,$initialController,$controller,$action,$params=array()){
62 62
 		return $this->addPanel($title, $js->forward($initialController, $controller, $action,$params));
63 63
 	}
Please login to merge, or discard this patch.
Ajax/php/symfony/JsUtils.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -48,15 +48,15 @@
 block discarded – undo
48 48
 	}
49 49
 
50 50
 	public function renderContent($initialControllerInstance,$viewName, $params=NULL) {
51
-        if ($initialControllerInstance->has('templating')) {
52
-            return $initialControllerInstance->get('templating')->render($viewName, $params);
53
-        }
51
+		if ($initialControllerInstance->has('templating')) {
52
+			return $initialControllerInstance->get('templating')->render($viewName, $params);
53
+		}
54 54
 
55
-        if (!$initialControllerInstance->has('twig')) {
56
-            throw new \LogicException('You can not use the "renderView" method if the Templating Component or the Twig Bundle are not available.');
57
-        }
55
+		if (!$initialControllerInstance->has('twig')) {
56
+			throw new \LogicException('You can not use the "renderView" method if the Templating Component or the Twig Bundle are not available.');
57
+		}
58 58
 
59
-        return $initialControllerInstance->get('twig')->render($viewName, $params);
59
+		return $initialControllerInstance->get('twig')->render($viewName, $params);
60 60
 	}
61 61
 
62 62
 	public function fromDispatcher($dispatcher){
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlLabel.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -99,12 +99,12 @@
 block discarded – undo
99 99
 	}
100 100
 
101 101
 	/**
102
-	*  Adds an image
103
-	* @param string $src
104
-	* @param string $alt
105
-	* @param boolean $before
106
-	* @return HtmlImg
107
-	*/
102
+	 *  Adds an image
103
+	 * @param string $src
104
+	 * @param string $alt
105
+	 * @param boolean $before
106
+	 * @return HtmlImg
107
+	 */
108 108
 	public function addImage($src, $alt="", $before=true) {
109 109
 		$img=new HtmlImg("image-" . $this->identifier, $src, $alt);
110 110
 		$img->setClass("");
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlForm.php 1 patch
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\bootstrap\html\base\HtmlBsDoubleElement;
6 6
 use Ajax\JsUtils;
7
-
8 7
 use Ajax\common\html\html5\HtmlSelect;
9 8
 use Ajax\service\JString;
10 9
 
Please login to merge, or discard this patch.