php-censor/src/PHPCensor/ZeroConfigPluginInterface.php
2017-03-12 11:40:40 +07:00

16 lines
283 B
PHP

<?php
namespace PHPCensor;
use PHPCensor\Model\Build;
/**
* PHPCI Plugin Interface - Used by all build plugins.
*
* @author Dan Cryer <dan@block8.co.uk>
*/
interface ZeroConfigPluginInterface
{
public static function canExecute($stage, Builder $builder, Build $build);
}