phpci/PHPCI/Plugin.php

20 lines
399 B
PHP
Raw Permalink Normal View History

2013-05-03 17:02:53 +02:00
<?php
2013-05-16 03:16:56 +02:00
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2014, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
*/
2013-05-03 17:02:53 +02:00
namespace PHPCI;
2013-05-16 03:16:56 +02:00
/**
* PHPCI Plugin Interface - Used by all build plugins.
* @author Dan Cryer <dan@block8.co.uk>
2013-05-16 03:16:56 +02:00
*/
2013-05-03 17:02:53 +02:00
interface Plugin
{
public function execute();
}