Completed
Pull Request — master (#5)
by Paweł
03:21
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/Container/SimpleContainerTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
 
23 23
     public function setUp()
24 24
     {
25
-    	$containerEntity = new \SWP\TemplatesSystem\Tests\Gimme\Model\Container();
26
-    	$containerEntity->setId(1);
25
+        $containerEntity = new \SWP\TemplatesSystem\Tests\Gimme\Model\Container();
26
+        $containerEntity->setId(1);
27 27
 
28 28
         $this->container = new SimpleContainer($containerEntity);
29 29
     }
@@ -35,6 +35,6 @@  discard block
 block discarded – undo
35 35
 
36 36
     public function testRendering()
37 37
     {
38
-    	$this->assertEquals($this->container->renderOpenTag(), '<div id="swp_container_1" class="swp_container " style="" >');
38
+        $this->assertEquals($this->container->renderOpenTag(), '<div id="swp_container_1" class="swp_container " style="" >');
39 39
     }
40 40
 }
41 41
\ No newline at end of file
Please login to merge, or discard this patch.