1 | <?php |
||
8 | class Bar |
||
9 | { |
||
10 | /** |
||
11 | * The width of a group of bars, specified in either of these formats : Pixels (e.g. 50). |
||
12 | * Percentage of the available width for each group (e.g. '20%'), where '100%' means that groups have no space |
||
13 | * between them. |
||
14 | * |
||
15 | * @var int|string |
||
16 | */ |
||
17 | protected $groupWidth; |
||
18 | |||
19 | /** |
||
20 | * @param int|string $groupWidth |
||
21 | * |
||
22 | * @return $this |
||
23 | */ |
||
24 | public function setGroupWidth($groupWidth) |
||
30 | } |
||
31 |