Completed
Push — master ( 698065...adcbce )
by Paweł
14:33
created
SWP/TemplatesSystem/Gimme/Meta/Meta.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -123,6 +123,7 @@
 block discarded – undo
123 123
      * Check if string is JSON
124 124
      *
125 125
      * @param  string
126
+     * @param string $string
126 127
      *
127 128
      * @return bool
128 129
      */
Please login to merge, or discard this patch.
SWP/TemplatesSystem/Twig/TokenParser/ContainerTokenParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         $lineno = $token->getLine();
48 48
         $stream = $this->parser->getStream();
49 49
 
50
-        $name  = $this->parser->getExpressionParser()->parseExpression();
50
+        $name = $this->parser->getExpressionParser()->parseExpression();
51 51
         
52 52
         $parameters = null;
53 53
         if ($stream->nextIf(\Twig_Token::NAME_TYPE, 'with')) {
Please login to merge, or discard this patch.
SWP/TemplatesSystem/Tests/Gimme/Widget/HtmlWidgetTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     public function setUp()
25 25
     {
26
-    	$widgetEntity = new Widget();
27
-    	$widgetEntity->setId(1);
26
+        $widgetEntity = new Widget();
27
+        $widgetEntity->setId(1);
28 28
         $widgetEntity->setParameters(['html_body' => 'simple html body']);
29 29
 
30 30
         $this->widget = new HtmlWidget($widgetEntity);
Please login to merge, or discard this patch.