PHPCI/Helper and PHPCI/Model PSR2 compliance. Issue #18
This commit is contained in:
parent
e4a6e224c4
commit
11a3e3403f
12 changed files with 1268 additions and 1294 deletions
|
|
@ -9,36 +9,34 @@
|
|||
|
||||
namespace PHPCI\Model;
|
||||
|
||||
require_once(APPLICATION_PATH . 'PHPCI/Model/Base/BuildBase.php');
|
||||
|
||||
use PHPCI\Model\Base\BuildBase,
|
||||
PHPCI\Builder;
|
||||
use PHPCI\Model\Base\BuildBase;
|
||||
use PHPCI\Builder;
|
||||
|
||||
/**
|
||||
* Build Model
|
||||
* @uses PHPCI\Model\Base\BuildBase
|
||||
* @uses PHPCI\Model\Base\BuildBase
|
||||
* @author Dan Cryer <dan@block8.co.uk>
|
||||
* @package PHPCI
|
||||
* @subpackage Core
|
||||
*/
|
||||
class Build extends BuildBase
|
||||
{
|
||||
public function getCommitLink()
|
||||
{
|
||||
return '#';
|
||||
}
|
||||
public function getCommitLink()
|
||||
{
|
||||
return '#';
|
||||
}
|
||||
|
||||
public function getBranchLink()
|
||||
{
|
||||
return '#';
|
||||
}
|
||||
public function getBranchLink()
|
||||
{
|
||||
return '#';
|
||||
}
|
||||
|
||||
public function sendStatusPostback()
|
||||
{
|
||||
return;
|
||||
}
|
||||
public function sendStatusPostback()
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
public function createWorkingCopy(Builder $builder, $buildPath)
|
||||
{
|
||||
}
|
||||
public function createWorkingCopy(Builder $builder, $buildPath)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue