phpci/PHPCI/Plugin.php

9 lines
152 B
PHP
Raw Normal View History

2013-05-03 17:02:53 +02:00
<?php
namespace PHPCI;
interface Plugin
{
public function __construct(\PHPCI\Builder $phpci, array $options = array());
public function execute();
}