24 lines
535 B
PHP
24 lines
535 B
PHP
<?php
|
|
|
|
namespace View\Model;
|
|
|
|
use View\Model\Base\ViewQuery as BaseViewQuery;
|
|
|
|
use Propel\Runtime\Propel;
|
|
use View\Model\Map\ViewTableMap;
|
|
use \PDO;
|
|
use View\Model\View as ChildView;
|
|
/**
|
|
* Skeleton subclass for performing query and update operations on the 'view' table.
|
|
*
|
|
*
|
|
*
|
|
* You should add additional methods to this class to meet the
|
|
* application requirements. This class will only be generated as
|
|
* long as it does not already exist in the output directory.
|
|
*
|
|
*/
|
|
class ViewQuery extends BaseViewQuery
|
|
{
|
|
} // ViewQuery
|