Initial commit.

This commit is contained in:
Dan Cryer 2013-05-03 16:02:53 +01:00
commit 2c860e8009
43 changed files with 12560 additions and 0 deletions

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

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