| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class RectPatternVert extends RectPattern |
||
| 14 | { |
||
| 15 | public function __construct($aColor = 'black', $aWeight = 1, $aLineSpacing = 7) |
||
| 16 | { |
||
| 17 | parent::__construct($aColor, $aWeight); |
||
| 18 | $this->linespacing = $aLineSpacing; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Private methods. |
||
| 23 | * |
||
| 24 | * @param mixed $aImg |
||
| 25 | */ |
||
| 26 | public function DoPattern($aImg) |
||
| 34 | } |
||
| 35 | } |
||
| 37 |