16 lines
427 B
PHP
16 lines
427 B
PHP
<?php
|
|
/**
|
|
* @copyright 2010-2014 City of Bloomington, Indiana
|
|
* @license http://www.gnu.org/licenses/agpl.txt GNU/AGPL, see LICENSE.txt
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
*/
|
|
namespace Application\Models;
|
|
|
|
use Blossom\Classes\TableGateway;
|
|
use Zend\Db\Sql\Select;
|
|
|
|
class SectionsTable extends TableGateway
|
|
{
|
|
public function __construct() { parent::__construct('sections', __namespace__.'\Section'); }
|
|
}
|