Completed
Pull Request — master (#14)
by Gorka
12:44 queued 10:15
created
spec/LIN3S/WPFoundation/Twig/TagManagerTwigSpec.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
36 36
 '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
37 37
 })(window,document,'script','dataLayer','GTM-XXXXXX');</script>
38
-EOT
38
+eot
39 39
         );
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
fixtures/LIN3S/WPFoundation/Theme.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     public function templates($templates)
34 34
     {
35
-        return array_merge($templates, ['dummy-template' => 'DummyTemplate']);
35
+        return array_merge($templates, [ 'dummy-template' => 'DummyTemplate' ]);
36 36
     }
37 37
 
38 38
     /**
Please login to merge, or discard this patch.
spec/LIN3S/WPFoundation/Configuration/Acf/AcfSpec.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 
12 12
 namespace spec\LIN3S\WPFoundation\Configuration\Acf;
13 13
 
14
-use fixtures\LIN3S\WPFoundation\Acf;
15 14
 use LIN3S\WPFoundation\Configuration\Acf\Acf as BaseAcf;
16 15
 use LIN3S\WPFoundation\Configuration\Acf\AcfInterface;
17 16
 use PhpSpec\ObjectBehavior;
17
+use fixtures\LIN3S\WPFoundation\Acf;
18 18
 
19 19
 /**
20 20
  * Custom ACF Wysiwyg class adding some useful features.
Please login to merge, or discard this patch.
spec/LIN3S/WPFoundation/Configuration/Login/LoginSpec.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 
12 12
 namespace spec\LIN3S\WPFoundation\Configuration\Login;
13 13
 
14
-use fixtures\LIN3S\WPFoundation\Login;
15 14
 use LIN3S\WPFoundation\Configuration\Login\Login as BaseLogin;
16 15
 use LIN3S\WPFoundation\Configuration\Login\LoginInterface;
17 16
 use PhpSpec\ObjectBehavior;
17
+use fixtures\LIN3S\WPFoundation\Login;
18 18
 
19 19
 /**
20 20
  * Spec of Login class.
Please login to merge, or discard this patch.
fixtures/LIN3S/WPFoundation/Acf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     public function wyswygToolbars()
27 27
     {
28 28
         return [
29
-            'lin3s' => [1 => ['bold', 'italic', 'bullist', 'numlist', 'link', 'unlink']],
29
+            'lin3s' => [ 1 => [ 'bold', 'italic', 'bullist', 'numlist', 'link', 'unlink' ] ],
30 30
         ];
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
fixtures/LIN3S/WPFoundation/PageFields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
      */
31 31
     public function components()
32 32
     {
33
-        return [];
33
+        return [ ];
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
fixtures/LIN3S/WPFoundation/CustomPostTypeFields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
      */
31 31
     public function components()
32 32
     {
33
-        return [];
33
+        return [ ];
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
fixtures/LIN3S/WPFoundation/Fields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function components()
27 27
     {
28
-        return [];
28
+        return [ ];
29 29
     }
30 30
 
31 31
     /**
Please login to merge, or discard this patch.
spec/LIN3S/WPFoundation/Configuration/Theme/ThemeSpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,13 +42,13 @@
 block discarded – undo
42 42
 
43 43
     function it_should_return_templates()
44 44
     {
45
-        $this->templates(['my-template' => 'MyTemplate'])->shouldReturn([
45
+        $this->templates([ 'my-template' => 'MyTemplate' ])->shouldReturn([
46 46
             'my-template' => 'MyTemplate', 'dummy-template' => 'DummyTemplate',
47 47
         ]);
48 48
     }
49 49
 
50 50
     function it_should_return_context()
51 51
     {
52
-        $this->context(['heder-menu' => 'Header Menu'])->shouldReturn(['heder-menu' => 'Header Menu']);
52
+        $this->context([ 'heder-menu' => 'Header Menu' ])->shouldReturn([ 'heder-menu' => 'Header Menu' ]);
53 53
     }
54 54
 }
Please login to merge, or discard this patch.