acquia_commercemanager-8.x-1.122/modules/acm_customer/src/Ajax/CustomerFormSavedCommand.php
modules/acm_customer/src/Ajax/CustomerFormSavedCommand.php
<?php
namespace Drupal\acm_customer\Ajax;
use Drupal\Core\Ajax\BaseCommand;
/**
* Custom AJAX Command.
*
* Command for passing a rendered customer form to the JavaScript app.
*/
class CustomerFormSavedCommand extends BaseCommand {
/**
* Constructs a CustomerFormSavedCommand object.
*
* @param string $data
* The data to pass on to the client side.
*/
public function __construct($data) {
parent::__construct('acmCustomerFormSaved', $data);
}
}
