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

View file

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