for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AmaTeam\Image\Projection\Geometry;
class Box
{
/**
* @var int
*/
private $height;
private $width;
* @param int $height
* @param int $width
public function __construct($width, $height)
$this->width = $width;
$this->height = $height;
}
* @return int
public function getHeight()
return $this->height;
public function getWidth()
return $this->width;