Transactions.php 560 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. *
  4. * PHP Pro Bid $Id$ pEHl4GG201MmEykQg4FthisdSYlav1qn1D1+VLZTk9M=
  5. *
  6. * @link http://www.phpprobid.com
  7. * @copyright Copyright (c) 2014 Online Ventures Software LTD & CodeCube SRL
  8. * @license http://www.phpprobid.com/license Commercial License
  9. *
  10. * @version 7.0
  11. */
  12. /**
  13. * transactions table rowset class
  14. */
  15. namespace Ppb\Db\Table\Rowset;
  16. class Transactions extends AbstractAccounting
  17. {
  18. /**
  19. *
  20. * row object class
  21. *
  22. * @var string
  23. */
  24. protected $_rowClass = '\Ppb\Db\Table\Row\Transaction';
  25. }