php-censor/src/PHPCensor/Store/ProjectGroupStore.php

19 lines
392 B
PHP
Raw Normal View History

2015-10-08 17:33:01 +02:00
<?php
/**
* ProjectGroup store for table: project_group
*/
2016-07-19 20:28:11 +02:00
namespace PHPCensor\Store;
2015-10-08 17:33:01 +02:00
2016-07-19 20:28:11 +02:00
use PHPCensor\Store\Base\ProjectGroupStoreBase;
2015-10-08 17:33:01 +02:00
/**
* ProjectGroup Store
* @uses PHPCensor\Store\Base\ProjectGroupStoreBase
2015-10-08 17:33:01 +02:00
*/
class ProjectGroupStore extends ProjectGroupStoreBase
{
// This class has been left blank so that you can modify it - changes in this file will not be overwritten.
}