for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bangpound\oEmbed\Response;
/**
* Class DimensionTrait.
*/
trait DimensionTrait
{
* @var int
protected $width;
protected $height;
* @return string
public function getWidth()
return (int) $this->width;
}
public function getHeight()
return (int) $this->height;