phpci/PHPCI/Store/ProjectStore.php

20 lines
415 B
PHP
Raw Normal View History

2013-05-03 17:02:53 +02:00
<?php
/**
* Project store for table: project
*/
namespace PHPCI\Store;
require_once(APPLICATION_PATH . 'PHPCI/Store/Base/ProjectStoreBase.php');
use PHPCI\Store\Base\ProjectStoreBase;
/**
* Project Store
* @uses PHPCI\Store\Base\ProjectStoreBase
*/
class ProjectStore extends ProjectStoreBase
{
// This class has been left blank so that you can modify it - changes in this file will not be overwritten.
}