Source for file BidList.php
Documentation is available at BidList.php
* Model for a list of bids
* @author Carsten Lucke <luckec@php.net>
* Number of bids in the bid-list
* create new feedback model
$this->count = (integer) $bids['Bids']['Count'];
if (isset ($bids['Bids']['Bid'])) {
if (!isset ($bids['Bids']['Bid'][0 ])) {
$bids['Bids']['Bid'] = array ($bids['Bids']['Bid']);
foreach ($bids['Bids']['Bid'] as $tmp) {
* iterate through the transactions
return new ArrayObject ($this->bids);
* Returns the number of bids, the bid-list contains.
* @return integer number of bids
Documentation generated on Mon, 11 Mar 2019 15:49:46 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|