php-censor/PHPCI/Store/BuildMetaStore.php

20 lines
432 B
PHP

<?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.
}