12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ 8WlCtERu+ZSJDQp0N6K1a97mi9cbiUvoq6NNa7CWZG4=
- *
- * @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
- */
- /**
- * stores subscriptions table rowset class
- */
- namespace Ppb\Db\Table\Rowset;
- class StoresSubscriptions extends AbstractRowset
- {
- /**
- *
- * row object class
- *
- * @var string
- */
- protected $_rowClass = '\Ppb\Db\Table\Row\StoreSubscription';
- }
|