<?php/**
* @file
* Contains \Drupal\edit\Ajax\FieldFormCommand.
*/namespaceDrupal\edit\Ajax;
useDrupal\Core\Ajax\CommandInterface;
/**
* AJAX command for passing a rendered field form to Edit's JavaScript app.
*/class FieldFormCommandextends BaseCommand {
/**
* Constructs a FieldFormCommand object.
*
* @param string $data
* The data to pass on to the client side.
*/
public function__construct($data) {
parent::__construct('editFieldForm', $data);
}
}