| 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 |