php-ej1-demos/EJ/RangeNavigator/LowerLevelBorder.php

16 строки
249 B
PHP

<?php
namespace EJ\RangeNavigator;
class LowerLevelBorder {
public function color ($value) {
$this -> color = $value;
return $this;
}
public function width ($value) {
$this -> width = $value;
return $this;
}
}
?>