phpci/PHPCI/Model/Build.php

42 lines
688 B
PHP
Raw 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 2013, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link http://www.phptesting.org/
*/
2013-05-03 17:02:53 +02:00
namespace PHPCI\Model;
require_once(APPLICATION_PATH . 'PHPCI/Model/Base/BuildBase.php');
use PHPCI\Model\Base\BuildBase,
PHPCI\Builder;
2013-05-03 17:02:53 +02:00
/**
* Build Model
* @uses PHPCI\Model\Base\BuildBase
*/
class Build extends BuildBase
{
2013-05-10 13:28:43 +02:00
public function getCommitLink()
{
return '#';
2013-05-10 13:28:43 +02:00
}
public function getBranchLink()
{
return '#';
2013-05-10 13:28:43 +02:00
}
2013-05-14 17:58:14 +02:00
public function sendStatusPostback()
{
return;
}
2013-05-14 18:49:39 +02:00
public function createWorkingCopy(Builder $builder, $buildPath)
{
2013-05-14 17:58:14 +02:00
}
2013-05-03 17:02:53 +02:00
}