1 | <?php |
||
24 | abstract class AbstractFTPClient { |
||
25 | |||
26 | /** |
||
27 | * Authenticator. |
||
28 | * |
||
29 | * @var Authenticator |
||
30 | */ |
||
31 | private $authenticator; |
||
32 | |||
33 | /** |
||
34 | * Connection. |
||
35 | * |
||
36 | * @var ressource |
||
37 | */ |
||
38 | private $connection; |
||
39 | |||
40 | /** |
||
41 | * Constructor. |
||
42 | * |
||
43 | * @param Authenticator $authenticator The authenticator. |
||
44 | */ |
||
45 | protected function __construct(Authenticator $authenticator) { |
||
48 | |||
49 | /** |
||
50 | * Get the authenticator. |
||
51 | * |
||
52 | * @return Authenticator Returns the authenticator. |
||
53 | */ |
||
54 | final public function getAuthenticator() { |
||
57 | |||
58 | /** |
||
59 | * Get the connection. |
||
60 | * |
||
61 | * @return resource Returns the connection. |
||
62 | */ |
||
63 | final public function getConnection() { |
||
66 | |||
67 | /** |
||
68 | * Construct a new FTP exception. |
||
69 | * |
||
70 | * @param string $message The message. |
||
71 | * @return FTPException Returns a new FTP exception. |
||
72 | */ |
||
73 | final protected function newFTPException($message) { |
||
76 | |||
77 | /** |
||
78 | * Set the authenticator. |
||
79 | * |
||
80 | * @param \WBW\Library\FTP\Client\Authenticator $authenticator The authenticator. |
||
81 | * @returns AbstractFTPClient Returns this abstract FTP client. |
||
82 | */ |
||
83 | final protected function setAuthenticator(Authenticator $authenticator) { |
||
87 | |||
88 | /** |
||
89 | * Set the connection. |
||
90 | * |
||
91 | * @param ressource $connection The connection. |
||
92 | * @returns AbstractFTPClient Returns this abstract FTP client. |
||
93 | */ |
||
94 | final protected function setConnection($connection) { |
||
98 | |||
99 | } |
||
100 |
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.