Security update for Core, with self-updated composer
[yaffs-website] / web / core / tests / Drupal / Tests / Core / Database / ConditionTest.php
index 13b6293424021591ec3013d498cc164a1b03b25a..db2c89d1e770623320a03cc4a511d22647b59ef6 100644 (file)
@@ -44,7 +44,7 @@ class ConditionTest extends UnitTestCase {
     $query_placeholder = $this->prophesize(PlaceholderInterface::class);
 
     $counter = 0;
-    $query_placeholder->nextPlaceholder()->will(function() use (&$counter) {
+    $query_placeholder->nextPlaceholder()->will(function () use (&$counter) {
       return $counter++;
     });
     $query_placeholder->uniqueIdentifier()->willReturn(4);
@@ -85,7 +85,7 @@ class ConditionTest extends UnitTestCase {
     $query_placeholder = $this->prophesize(PlaceholderInterface::class);
 
     $counter = 0;
-    $query_placeholder->nextPlaceholder()->will(function() use (&$counter) {
+    $query_placeholder->nextPlaceholder()->will(function () use (&$counter) {
       return $counter++;
     });
     $query_placeholder->uniqueIdentifier()->willReturn(4);
@@ -153,7 +153,7 @@ class ConditionTest extends UnitTestCase {
     $query_placeholder = $this->prophesize(PlaceholderInterface::class);
 
     $counter = 0;
-    $query_placeholder->nextPlaceholder()->will(function() use (&$counter) {
+    $query_placeholder->nextPlaceholder()->will(function () use (&$counter) {
       return $counter++;
     });
     $query_placeholder->uniqueIdentifier()->willReturn(4);