mscherer 4 years ago
parent
commit
b41b0a3403
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/View/ViewBuilderTest.php

+ 2 - 2
tests/TestCase/View/ViewBuilderTest.php

@@ -159,7 +159,7 @@ class ViewBuilderTest extends TestCase
         $get = 'get' . ucfirst($property);
         $set = 'set' . ucfirst($property);
 
-        $this->deprecated(function() use($get, $set, $value) {
+        $this->deprecated(function () use ($get, $set, $value) {
             $builder = new ViewBuilder();
             $this->assertSame([], $builder->{$get}(), 'Default value should be empty list');
             $this->assertSame($builder, $builder->{$set}($value), 'Setter returns this');
@@ -177,7 +177,7 @@ class ViewBuilderTest extends TestCase
         $get = 'get' . ucfirst($property);
         $set = 'set' . ucfirst($property);
 
-        $this->deprecated(function() use($get, $set, $value) {
+        $this->deprecated(function () use ($get, $set, $value) {
             $builder = new ViewBuilder();
             $builder->{$set}($value);