Total Complexity | 7 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class GEOSWKTWriter |
||
12 | { |
||
13 | /** |
||
14 | * Constructor. |
||
15 | */ |
||
16 | public function __construct() {} |
||
17 | |||
18 | /** |
||
19 | * @param GEOSGeometry $geom |
||
20 | * |
||
21 | * @return string |
||
22 | * |
||
23 | * @throws \Exception |
||
24 | */ |
||
25 | public function write(GEOSGeometry $geom) {} |
||
|
|||
26 | |||
27 | /** |
||
28 | * @param bool $trim |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function setTrim($trim) {} |
||
33 | |||
34 | /** |
||
35 | * @param int $prec |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | public function setRoundingPrecision($prec) {} |
||
40 | |||
41 | /** |
||
42 | * @param int $dim |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | public function setOutputDimension($dim) {} |
||
47 | |||
48 | /** |
||
49 | * @return int |
||
50 | */ |
||
51 | public function getOutputDimension() {} |
||
52 | |||
53 | /** |
||
54 | * @param bool $val |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | public function setOld3D($val) {} |
||
59 | } |
||
60 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.