1 | <?php |
||
14 | class WebLibraryManagerServiceProvider extends ServiceProvider implements Scopable |
||
15 | { |
||
16 | /** |
||
17 | * @Factory() |
||
18 | */ |
||
19 | public static function createWebLibraryManager(ContainerInterface $container, RendererInterface $renderer): WebLibraryManager |
||
23 | |||
24 | /** |
||
25 | * @Factory(name="webLibraries") |
||
26 | */ |
||
27 | public static function createWebLibraries(): \SplPriorityQueue |
||
31 | |||
32 | private $rootUrl; |
||
33 | |||
34 | /** |
||
35 | * @Factory(name="rootUrlInlineWebLibrary", tags={@Tag(name="webLibraries", priority=0.0)}) |
||
36 | */ |
||
37 | public static function createRootUrlWebLibrary(ContainerInterface $container): InlineWebLibrary |
||
46 | |||
47 | /** |
||
48 | * Loads the file. |
||
49 | * |
||
50 | * @param string $file |
||
51 | */ |
||
52 | public function loadFile($file) |
||
56 | } |
||
57 |
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.