Total Complexity | 2 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class ActionArea |
||
20 | { |
||
21 | /** |
||
22 | * @var int |
||
23 | */ |
||
24 | public $x; |
||
25 | |||
26 | /** |
||
27 | * @var int |
||
28 | */ |
||
29 | public $y; |
||
30 | |||
31 | /** |
||
32 | * @var int |
||
33 | */ |
||
34 | public $width; |
||
35 | |||
36 | /** |
||
37 | * @var int |
||
38 | */ |
||
39 | public $height; |
||
40 | |||
41 | /** |
||
42 | * ActionArea constructor. |
||
43 | * @param int $x |
||
44 | * @param int $y |
||
45 | * @param int $width |
||
46 | * @param int $height |
||
47 | */ |
||
48 | public function __construct($x, $y, $width, $height) |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * @return AreaBuilder |
||
58 | */ |
||
59 | public function getArea() |
||
64 |