Bids::__construct PHP Method

__construct() public method

public __construct ( $BidsType = null )
        public function __construct($BidsType = null)
        {
            $this->BidsType = $BidsType;
        }

Usage Example

コード例 #1
0
 public function __construct($bid = null, $cpcBidSource = null, $BidsType = null)
 {
     parent::__construct();
     $this->bid = $bid;
     $this->cpcBidSource = $cpcBidSource;
     $this->BidsType = $BidsType;
 }
All Usage Examples Of Bids::__construct