acquia_commercemanager-8.x-1.122/modules/acm_customer/src/Ajax/CustomerFormCommand.php
modules/acm_customer/src/Ajax/CustomerFormCommand.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 CustomerFormCommand extends BaseCommand { /** * Constructs a CustomerFormCommand object. * * @param string $data * The data to pass on to the client side. */ public function __construct($data) { parent::__construct('acmCustomerForm', $data); } }