php-ej1-demos/EJ/BulletGraph/Border.php

16 строки
236 B
PHP

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