* @package PHPCI * @subpackage Plugins */ class Email implements \PHPCI\Plugin { /** * @var \PHPCI\Builder */ protected $phpci; /** * @var array */ protected $options; public function __construct(\PHPCI\Builder $phpci, array $options = array()) { $this->phpci = $phpci; $this->options = $options; } /** * Connects to MySQL and runs a specified set of queries. */ public function execute() { return true; } }