for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bangpound\oEmbed\Response;
/**
* Class RichResponse.
*/
class RichResponse extends Response
{
use DimensionTrait;
* @var string
protected $html;
* @return string
public function getHtml()
return $this->html;
}
public function __toString()
return $this->getHtml();