diff --git a/src/directives.php b/src/directives.php index c4e967c..ad0a61c 100644 --- a/src/directives.php +++ b/src/directives.php @@ -1,8 +1,7 @@ function ($expression) { - return ''; + return ''; }, /* @@ -430,14 +429,14 @@ */ 'kebab' => function ($expression) { - return ''; + return ''; }, 'snake' => function ($expression) { - return ''; + return ''; }, 'camel' => function ($expression) { - return ''; + return ''; }, ]; diff --git a/tests/CountTest.php b/tests/CountTest.php index bc0b814..d73a40d 100644 --- a/tests/CountTest.php +++ b/tests/CountTest.php @@ -6,8 +6,8 @@ class CountTest extends TestCase { public function test_count_is_compiled() { - $blade = "@count([1,2,3])"; - $expected = ""; + $blade = '@count([1,2,3])'; + $expected = ''; $this->assertSame($expected, $this->blade->compileString($blade)); }