Skip to content

Commit

Permalink
Merge pull request #1 from QuentinGallard/fix-source-object
Browse files Browse the repository at this point in the history
Fix source object
  • Loading branch information
visavi authored Jul 15, 2021
2 parents 03948d4 + dff63dd commit 8389a51
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions 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 All @@ -59,7 +64,7 @@ public function getFd()
*/
public function setFd($fd)
{
$this->validateIn($allimps, BitType::getAll());
$this->validateIn($fd, BitType::getAll());
$this->fd = $fd;

return $this;
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 8389a51

Please sign in to comment.