|
28 | 28 | use Sabre\DAV\Auth\Plugin; |
29 | 29 |
|
30 | 30 | class ServerFactory { |
31 | | - private IConfig $config; |
32 | | - private LoggerInterface $logger; |
33 | | - private IDBConnection $databaseConnection; |
34 | | - private IUserSession $userSession; |
35 | | - private IMountManager $mountManager; |
36 | | - private ITagManager $tagManager; |
37 | | - private IRequest $request; |
38 | | - private IPreview $previewManager; |
39 | | - private IEventDispatcher $eventDispatcher; |
40 | | - private IL10N $l10n; |
41 | 31 |
|
42 | 32 | public function __construct( |
43 | | - IConfig $config, |
44 | | - LoggerInterface $logger, |
45 | | - IDBConnection $databaseConnection, |
46 | | - IUserSession $userSession, |
47 | | - IMountManager $mountManager, |
48 | | - ITagManager $tagManager, |
49 | | - IRequest $request, |
50 | | - IPreview $previewManager, |
51 | | - IEventDispatcher $eventDispatcher, |
52 | | - IL10N $l10n, |
| 33 | + private IConfig $config, |
| 34 | + private LoggerInterface $logger, |
| 35 | + private IDBConnection $databaseConnection, |
| 36 | + private IUserSession $userSession, |
| 37 | + private IMountManager $mountManager, |
| 38 | + private ITagManager $tagManager, |
| 39 | + private IRequest $request, |
| 40 | + private IPreview $previewManager, |
| 41 | + private IEventDispatcher $eventDispatcher, |
| 42 | + private IL10N $l10n, |
53 | 43 | ) { |
54 | | - $this->config = $config; |
55 | | - $this->logger = $logger; |
56 | | - $this->databaseConnection = $databaseConnection; |
57 | | - $this->userSession = $userSession; |
58 | | - $this->mountManager = $mountManager; |
59 | | - $this->tagManager = $tagManager; |
60 | | - $this->request = $request; |
61 | | - $this->previewManager = $previewManager; |
62 | | - $this->eventDispatcher = $eventDispatcher; |
63 | | - $this->l10n = $l10n; |
64 | 44 | } |
65 | 45 |
|
66 | 46 | /** |
|
0 commit comments