for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author stev leibelt <[email protected]>
* @since 2013-08-12
*/
namespace Example\Validator;
* Class Table
*
* @package Example\Validator
class Table
{
* @var string
protected $color;
* @var int
protected $height;
protected $length;
protected $width;
* @param string $color
* @return $this
public function setColor($color)
$this->color = $color;
return $this;
}
* @return string
public function getColor()
return $this->color;
* @param int $height
public function setHeight($height)
$this->height = $height;
* @return int
public function getHeight()
return $this->height;
* @param int $length
public function setLength($length)
$this->length = $length;
public function getLength()
return $this->length;
* @param int $width
public function setWidth($width)
$this->width = $width;
public function getWidth()
return $this->width;