<?php/**
* @file
* Definition of Drupal\Core\Ajax\CommandInterface.
*/namespaceDrupal\Core\Ajax;
/**
* AJAX command interface.
*
* All AJAX commands passed to AjaxResponse objects should implement these
* methods.
*/interfaceCommandInterface {
/**
* Return an array to be run through json_encode and sent to the client.
*/
public functionrender();
}