| 1 | <?php |
||
| 16 | class Table |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | * @author stev leibelt <[email protected]> |
||
| 21 | * @since 2013-06-26 |
||
| 22 | */ |
||
| 23 | protected $color; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | * @author stev leibelt <[email protected]> |
||
| 28 | * @since 2013-06-26 |
||
| 29 | */ |
||
| 30 | protected $feature; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | * @author stev leibelt <[email protected]> |
||
| 35 | * @since 2013-06-26 |
||
| 36 | */ |
||
| 37 | protected $height; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var string |
||
| 41 | * @author stev leibelt <[email protected]> |
||
| 42 | * @since 2013-06-26 |
||
| 43 | */ |
||
| 44 | protected $developer; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param string $color |
||
| 48 | * @param string $feature |
||
| 49 | * @param string $height |
||
| 50 | * @param string $developer |
||
| 51 | * @author stev leibelt <[email protected]> |
||
| 52 | * @since 2013-06-26 |
||
| 53 | */ |
||
| 54 | public function __construct($color, $feature = '', $height = '0cm', $developer = 'tux') |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @return string |
||
| 64 | * @author stev leibelt <[email protected]> |
||
| 65 | * @since 2013-06-26 |
||
| 66 | */ |
||
| 67 | public function getColor() |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @return string |
||
| 74 | * @author stev leibelt <[email protected]> |
||
| 75 | * @since 2013-06-26 |
||
| 76 | */ |
||
| 77 | public function getFeature() |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @return string |
||
| 84 | * @author stev leibelt <[email protected]> |
||
| 85 | * @since 2013-06-26 |
||
| 86 | */ |
||
| 87 | public function getHeight() |
||
| 91 | |||
| 92 | /** |
||
| 93 | * @return string |
||
| 94 | * @author stev leibelt <[email protected]> |
||
| 95 | * @since 2013-06-26 |
||
| 96 | */ |
||
| 97 | public function getDeveloper() |
||
| 101 | } |