mirror of
https://github.com/scummvm/scummvm-web.git
synced 2026-05-21 05:40:47 +00:00
20 lines
447 B
PHP
20 lines
447 B
PHP
<?php
|
|
|
|
namespace ScummVM\OrmObjects;
|
|
|
|
use ScummVM\OrmObjects\Base\CompanyQuery as BaseCompanyQuery;
|
|
|
|
/**
|
|
* Skeleton subclass for performing query and update operations on the 'company' 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 CompanyQuery extends BaseCompanyQuery
|
|
{
|
|
|
|
}
|