Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / Tests / Component / Utility / ArgumentsResolverTest.php
index 9099d6fa582a5941a2e8e04941ddcaef663c599b..7a56abb52899a82167fdcfe13252ff7339f6f7ca 100644 (file)
@@ -61,7 +61,7 @@ class ArgumentsResolverTest extends TestCase {
 
     // Test with a raw value that overrides the provided upcast value, since
     // it is not typehinted.
-    $scalars  = ['foo' => 'baz'];
+    $scalars = ['foo' => 'baz'];
     $objects = ['foo' => new \stdClass()];
     $data[] = [
       function ($foo) {}, $scalars, $objects, [], ['baz'],
@@ -206,6 +206,7 @@ class ArgumentsResolverTest extends TestCase {
  * Provides a test class.
  */
 class TestClass {
+
   public function access($foo) {
   }