Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / migrate / tests / src / Unit / destination / PerComponentEntityFormDisplayTest.php
index 157d45e3393e2462c6912aa3d2aa4e1e529deebd..218d9a6585c1440a03cfa9a0330dac352c701305 100644 (file)
@@ -53,13 +53,16 @@ class PerComponentEntityFormDisplayTest extends MigrateTestCase {
 class TestPerComponentEntityFormDisplay extends PerComponentEntityFormDisplay {
   const MODE_NAME = 'form_mode';
   protected $testValues;
+
   public function __construct($entity) {
     $this->entity = $entity;
   }
+
   protected function getEntity($entity_type, $bundle, $form_mode) {
     $this->testValues = func_get_args();
     return $this->entity;
   }
+
   public function getTestValues() {
     return $this->testValues;
   }