1 | <?php |
||
22 | abstract class Abstraction extends Cli |
||
23 | { |
||
24 | /** |
||
25 | * (non-PHPDoc) |
||
26 | * |
||
27 | * @see \phpbu\App\Backup\Crypter |
||
28 | * @param \phpbu\App\Backup\Target $target |
||
29 | * @param \phpbu\App\Result $result |
||
30 | * @throws Exception |
||
31 | */ |
||
32 | public function crypt(Target $target, Result $result) |
||
43 | |||
44 | /** |
||
45 | * Simulate the encryption. |
||
46 | * |
||
47 | * @param \phpbu\App\Backup\Target $target |
||
48 | * @param \phpbu\App\Result $result |
||
49 | */ |
||
50 | public function simulate(Target $target, Result $result) |
||
57 | |||
58 | /** |
||
59 | * Return an absolute path relative to the used file. |
||
60 | * |
||
61 | * @param string $path |
||
62 | * @param string $default |
||
63 | * @return string |
||
64 | */ |
||
65 | protected function toAbsolutePath($path, $default = null) |
||
69 | } |
||
70 |
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.