1 | <?php |
||
13 | class ArrayManagerRegistry extends AbstractManagerRegistry |
||
14 | { |
||
15 | /** |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $container; |
||
19 | |||
20 | /** |
||
21 | * ArrayManagerRegistry constructor. |
||
22 | * @param string $name |
||
23 | * @param array $connections |
||
24 | * @param array $managers |
||
25 | * @param string $defaultConnection |
||
26 | * @param string $defaultManager |
||
27 | */ |
||
28 | 10 | public function __construct( |
|
49 | |||
50 | /** |
||
51 | * @param string $name |
||
52 | * @return mixed |
||
53 | */ |
||
54 | 10 | protected function getService($name) |
|
58 | |||
59 | /** |
||
60 | * @param string $name |
||
61 | */ |
||
62 | protected function resetService($name) |
||
67 | |||
68 | /** |
||
69 | * @param string $alias |
||
70 | * @return mixed |
||
71 | * @throws \Exception |
||
72 | * Note that this probably should use ORMException, but that so far this class doesn't know about ORM (just persistence) |
||
73 | */ |
||
74 | public function getAliasNamespace($alias) |
||
84 | } |
||
85 |
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.