Completed
Push — master ( e902d1...2f10fa )
by Amine
01:35
created
src/Template/Twig/TwigTemplate.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      */
17 17
     protected $data;
18 18
 
19
-    public function __construct ($twig)
19
+    public function __construct($twig)
20 20
     {
21 21
         $this->twig = $twig;
22 22
         $this->data = [];
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * @param  array $data
29 29
      * @return self
30 30
      */
31
-    public function bind (array $data) : TemplateInterface
31
+    public function bind(array $data) : TemplateInterface
32 32
     {
33 33
         $this->data = array_merge($this->data, $data);
34 34
         return $this;
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @return self
54 54
      */
55
-    public function clear () : TemplateInterface
55
+    public function clear() : TemplateInterface
56 56
     {
57 57
         $this->data = [];
58 58
         return $this;
Please login to merge, or discard this patch.