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