From f88df400f0f64be87b1b4ffdf40b80bddcb5f7c3 Mon Sep 17 00:00:00 2001 From: meadsteve Date: Sun, 17 Nov 2013 17:22:31 +0000 Subject: [PATCH] Remove __constructor from plugin interface to increase flexibility. --- PHPCI/Plugin.php | 1 - 1 file changed, 1 deletion(-) diff --git a/PHPCI/Plugin.php b/PHPCI/Plugin.php index a924b39a..6f915e3b 100644 --- a/PHPCI/Plugin.php +++ b/PHPCI/Plugin.php @@ -18,6 +18,5 @@ use PHPCI\Model\Build; */ interface Plugin { - public function __construct(Builder $phpci, Build $build, array $options = array()); public function execute(); }