1 | <?php |
||
15 | class SmsaManager |
||
16 | { |
||
17 | private $uri; |
||
|
|||
18 | private $wsdlFilePath; |
||
19 | private $passkey; |
||
20 | private $client; |
||
21 | private $nullValues = null; |
||
22 | private $reflection; |
||
23 | |||
24 | use MapMethods; |
||
25 | use ControlWsdl; |
||
26 | use ValidateData; |
||
27 | use Configurable; |
||
28 | use PrepareClient; |
||
29 | use UsesReflection; |
||
30 | |||
31 | /** |
||
32 | * __call |
||
33 | * Insert description here. |
||
34 | * |
||
35 | * @param $method |
||
36 | * @param $arguments |
||
37 | * |
||
38 | * @return |
||
39 | */ |
||
40 | 6 | public function __call($method, $arguments) |
|
49 | } |
||
50 |
This check marks private properties in classes that are never used. Those properties can be removed.