php-ej1-demos/EJ/CircularGauge/RangesBorder.php

16 строки
244 B
PHP

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