Skip to content

Commit

Permalink
Add ext attribute in Source object
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinGallard committed Jul 15, 2021
1 parent 03948d4 commit 3a460fa
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion src/BidRequest/Source.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ class Source implements Arrayable
*/
protected $pchain;

/**
* @var Ext
*/
protected $ext;

/**
* @return bool
*/
Expand Down Expand Up @@ -107,6 +112,21 @@ public function setPchain($pchain)
return $this;
}

/**
* @return Ext
*/
public function getExt()
{
return $this->ext;
}


/**
* @param Ext $ext
* @return $this
*/
public function setExt(Ext $ext)
{
$this->ext = $ext;
return $this;
}
}

0 comments on commit 3a460fa

Please sign in to comment.