Bids::__construct PHP 메소드

__construct() 공개 메소드

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