for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author stev leibelt <[email protected]>
* @since 2013-06-26
*/
namespace Example\Table;
* Class Table
*
* @package Example\Table
class Table
{
* @var string
protected $color;
protected $feature;
protected $height;
protected $developer;
* @param string $color
* @param string $feature
* @param string $height
* @param string $developer
public function __construct($color, $feature = '', $height = '0cm', $developer = 'tux')
$this->color = $color;
$this->feature = $feature;
$this->height = $height;
$this->developer = $developer;
}
* @return string
public function getColor()
return $this->color;
public function getFeature()
return $this->feature;
public function getHeight()
return $this->height;
public function getDeveloper()
return $this->developer;