phpci/PHPCI/ZeroConfigPlugin.php
Marco Vito Moscaritolo b8443b8af7 Plugin cleanup
* Renamed plugins interface (granted backcompatibility for external plugins)
 * Updated copyright in plugin
 * Dockblock cleanup
2015-04-28 08:50:09 +02:00

25 lines
548 B
PHP

<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2015, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
*/
namespace PHPCI;
use PHPCI\Model\Build;
/**
* PHPCI Plugin Interface - Used by all build plugins.
*
* @author Dan Cryer <dan@block8.co.uk>
* @deprecated 1.8 Only for backward compatibility
* @see PluginZeroConfigInterface
*/
interface ZeroConfigPlugin extends PluginZeroConfigInterface
{
}