Source for file BuildTask.php
Documentation is available at BuildTask.php
* Interface for a generic build task. Does not support dependencies. This will simply
* run a chunk of code when called.
* To disable the task (in the case of potentially destructive updates or deletes), declare
* the $Disabled property on the subclass.
* @todo move from sapphire/testing to sapphire/dev or sapphire/development?
abstract function run($request);
|