acquia_lift-8.x-4.3/src/Service/Context/ContextInterface.php
src/Service/Context/ContextInterface.php
<?php
namespace Drupal\acquia_lift\Service\Context;
/**
* Page Context Interface for populating content.
*/
interface ContextInterface {
/**
* Populate page by context.
*
* @param array &$page
* The page that is to be populated.
*/
public function populate(array &$page);
}
