UpdateHelperInterface.php in Evercurrent 8.2
Same filename and directory in other branches
Namespace
Drupal\evercurrentFile
src/UpdateHelperInterface.phpView source
<?php
namespace Drupal\evercurrent;
/**
* The UpdateHelperInterface in case there are more services like it.
*
* @package Drupal\evercurrent
*/
interface UpdateHelperInterface {
/**
* Send updates to the Maintenance server.
*
* @param bool $force_update
* A flag that will ignore checks for time or similarity.
*
* @return bool
* Returns success or failure.
*/
public function sendUpdates($force_update = TRUE);
}
Interfaces
Name | Description |
---|---|
UpdateHelperInterface | The UpdateHelperInterface in case there are more services like it. |