1 | <?php |
||
8 | class BackTo extends AbstractPlugin |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $paramName = 'backto'; |
||
14 | |||
15 | /** |
||
16 | * @var |
||
17 | */ |
||
18 | protected $sessionContainer; |
||
19 | |||
20 | /** |
||
21 | * @param $name |
||
22 | */ |
||
23 | public function setParamName($name) |
||
27 | |||
28 | /** |
||
29 | * @param \Zend\Session\Container $container |
||
30 | * @return BackTo |
||
31 | */ |
||
32 | public function setSessionContainer(Container $container) |
||
37 | |||
38 | /** |
||
39 | * @return mixed |
||
40 | */ |
||
41 | public function getSessionContainer() |
||
49 | |||
50 | /** |
||
51 | * @param null $url |
||
52 | */ |
||
53 | public function setBackUrl($url = null) |
||
64 | |||
65 | /** |
||
66 | * @param bool $flush |
||
67 | * @return string |
||
68 | */ |
||
69 | public function getBackUrl($flush = true) |
||
84 | |||
85 | /** |
||
86 | * @return BackTo |
||
87 | */ |
||
88 | public function flush() |
||
94 | |||
95 | /** |
||
96 | * |
||
97 | */ |
||
98 | public function previous($message = null) |
||
111 | } |
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.