Initial commit.
This commit is contained in:
commit
2c860e8009
43 changed files with 12560 additions and 0 deletions
20
PHPCI/Store/ProjectStore.php
Normal file
20
PHPCI/Store/ProjectStore.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?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.
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue