| Total Complexity | 5 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class RectPatternCross extends RectPattern |
||
| 14 | { |
||
| 15 | private $vert; |
||
| 16 | private $hor; |
||
| 17 | |||
| 18 | public function __construct($aColor = 'black', $aWeight = 1) |
||
| 23 | } |
||
| 24 | |||
| 25 | public function SetOrder($aDepth) |
||
| 26 | { |
||
| 27 | $this->vert->SetOrder($aDepth); |
||
|
|
|||
| 28 | $this->hor->SetOrder($aDepth); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function SetPos($aRect) |
||
| 32 | { |
||
| 33 | parent::SetPos($aRect); |
||
| 34 | $this->vert->SetPos($aRect); |
||
| 35 | $this->hor->SetPos($aRect); |
||
| 36 | } |
||
| 37 | |||
| 38 | public function SetDensity($aDens) |
||
| 42 | } |
||
| 43 | |||
| 44 | public function DoPattern($aImg) |
||
| 48 | } |
||
| 49 | } |
||
| 50 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.