1 | <?php |
||
23 | class Border implements StyleInterface |
||
24 | { |
||
25 | /** |
||
26 | * Take a coordinate range and paint a border along it |
||
27 | * |
||
28 | * @param ReportBuilder $context |
||
29 | * @param string $coordString |
||
30 | * @param array $options |
||
31 | * @return type |
||
32 | * @throws \InvalidArgumentException if options array is missing edge |
||
33 | */ |
||
34 | public function run(ReportBuilder &$context, $coordString, $options) |
||
51 | } |
||
52 |