This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Bridge/Propel1/Fixtures/ItemQuery.php

28 lines
546 B
PHP
Raw Normal View History

<?php
/*
* this file is part of the symfony package.
*
* (c) fabien potencier <fabien@symfony.com>
*
* for the full copyright and license information, please view the license
* file that was distributed with this source code.
*/
namespace Symfony\Tests\Bridge\Propel1\Fixtures;
class ItemQuery
{
public function getTableMap()
{
// Allows to define methods in this class
// to avoid a lot of mock classes
return $this;
}
public function getPrimaryKeys()
{
return array('id');
}
}