Failed Conditions
Branch feature/refactoring-samurai (8cc7c1)
by Giuliano
03:47
created
tests/Unit/Entities/Base/AnyThemeTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 class AnyThemeTest extends TestCase
9 9
 {
10 10
     public function testFindAnyThemeWithinFullDir()
11
-    {   
11
+    {
12 12
         $this->theme('bands/hardline')->findOrCreate();
13 13
 
14 14
         $base = new Base();
Please login to merge, or discard this patch.
tests/Unit/Entities/Base/EmptyBaseTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     }
20 20
 
21 21
     public function testEmptyBase()
22
-    {   
22
+    {
23 23
         $base = new Base();
24 24
 
25 25
         $ret = $base->empty();
Please login to merge, or discard this patch.
tests/Unit/Entities/Author/AuthorTestCase.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * @return void
19 19
      */
20 20
     public function testAuthorProperties()
21
-    {        
21
+    {
22 22
         $signture = 'Giuliano Sampaio <[email protected]>';
23 23
         
24 24
         $author = new Author();
Please login to merge, or discard this patch.
tests/Unit/Foundation/FilenameParser/GetInfoFromFileTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 class GetInfoFromFileTest extends TestCase
10 10
 {
11 11
     public function testGetInfoFromFilename()
12
-    {        
12
+    {
13 13
         $theme  = $this->theme('bands/blind-guardian')->findOrCreate();
14 14
         $parser = new DirectiveParser($theme);
15 15
         
Please login to merge, or discard this patch.
tests/Unit/Foundation/FilenameParser/FilenameParserTestCase.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     }
56 56
 
57 57
     protected function assertFileName($info, string $name)
58
-    {        
58
+    {
59 59
         $this->assertObjectHasAttribute('name', $info);
60 60
         $this->assertEquals($info->name, $name);
61 61
     }
Please login to merge, or discard this patch.
tests/Unit/Foundation/FileNominator/FileNominatorTestCase.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      * @return void
18 18
      */
19 19
     public function testIncludeName()
20
-    {        
20
+    {
21 21
         $type = 'include';        
22 22
         $name = 'table';        
23 23
 
Please login to merge, or discard this patch.
tests/Unit/Foundation/ConfigKeeper/GetThemeBaseTest.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      * @return void
20 20
      */
21 21
     public function testGetBasePath()
22
-    {          
22
+    {
23 23
         $config = $this->getConfigKeeper();
24 24
         $folder = base_path('bands/kiss') . DS;
25 25
         $folder = FileSystem::folder($folder)->sanitize();
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      * @return void
40 40
      */
41 41
     public function testGetDefaultBasePath()
42
-    {        
42
+    {
43 43
         $this->setThemeBase(null);
44 44
 
45 45
         $config = $this->getConfigKeeper();
Please login to merge, or discard this patch.
tests/Unit/Foundation/EnvHandler/GetEnvVariableTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * @return void
44 44
      */
45 45
     public function testGeWithtNullableKey()
46
-    {   
46
+    {
47 47
         $handler = new EnvHandler();
48 48
 
49 49
         $this->expectException(\ArgumentCountError::class);
Please login to merge, or discard this patch.
tests/Unit/Foundation/EnvHandler/EnvHandlerTestCase.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * @return void
28 28
      */
29 29
     public function testGetAndSetEnvVariable()
30
-    {        
30
+    {
31 31
         $key = 'THEME_CURRENT';
32 32
         $val = 'bands/kix';
33 33
         
Please login to merge, or discard this patch.