@@ -8,7 +8,7 @@ |
||
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(); |
@@ -19,7 +19,7 @@ |
||
19 | 19 | } |
20 | 20 | |
21 | 21 | public function testEmptyBase() |
22 | - { |
|
22 | + { |
|
23 | 23 | $base = new Base(); |
24 | 24 | |
25 | 25 | $ret = $base->empty(); |
@@ -18,7 +18,7 @@ |
||
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(); |
@@ -9,7 +9,7 @@ |
||
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 |
@@ -55,7 +55,7 @@ |
||
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 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | * @return void |
18 | 18 | */ |
19 | 19 | public function testIncludeName() |
20 | - { |
|
20 | + { |
|
21 | 21 | $type = 'include'; |
22 | 22 | $name = 'table'; |
23 | 23 |
@@ -19,7 +19,7 @@ discard block |
||
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 |
||
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(); |
@@ -43,7 +43,7 @@ |
||
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); |
@@ -27,7 +27,7 @@ |
||
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 |