123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ v+Yq3FVLV7w/XjjKm9CxccWTfneLD6nC9ap970xoQEo=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2014 Online Ventures Software LTD & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.0
- */
- /**
- * sales listings table rowset class
- */
- namespace Ppb\Db\Table\Rowset;
- class SalesListings extends AbstractRowset
- {
- /**
- *
- * row object class
- *
- * @var string
- */
- protected $_rowClass = '\Ppb\Db\Table\Row\SaleListing';
- }
|