UI plugins, including quality trend chart, logs and lines of code. Some UI tweaks.

This commit is contained in:
Dan Cryer 2013-10-08 07:21:46 +01:00
commit b33189e08e
28 changed files with 2778 additions and 217 deletions

20
PHPCI/Model/BuildMeta.php Normal file
View file

@ -0,0 +1,20 @@
<?php
/**
* BuildMeta model for table: build_meta
*/
namespace PHPCI\Model;
require_once(APPLICATION_PATH . 'PHPCI/Model/Base/BuildMetaBase.php');
use PHPCI\Model\Base\BuildMetaBase;
/**
* BuildMeta Model
* @uses PHPCI\Model\Base\BuildMetaBase
*/
class BuildMeta extends BuildMetaBase
{
// This class has been left blank so that you can modify it - changes in this file will not be overwritten.
}