for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bangpound\oEmbed\Response;
/**
* Class Response.
*/
class Response
{
* @var string
protected $type;
protected $version = '1.0';
protected $title;
protected $authorName;
protected $authorUrl;
protected $providerName;
protected $providerUrl;
* @var int
protected $cacheAge;
protected $thumbnailUrl;
protected $thumbnailWidth;
protected $thumbnailHeight;
* @return string
public function getType()
return $this->type;
}
public function getVersion()
return $this->version;
public function getTitle()
return $this->title;
public function getAuthorName()
return $this->authorName;
public function getAuthorUrl()
return $this->authorUrl;
public function getProviderName()
return $this->providerName;
public function getProviderUrl()
return $this->providerUrl;
* @return int
public function getCacheAge()
return $this->cacheAge;
public function getThumbnailUrl()
return $this->thumbnailUrl;
public function getThumbnailWidth()
return (int) $this->thumbnailWidth;
public function getThumbnailHeight()
return (int) $this->thumbnailHeight;