Timezones
AbstractExtensionService.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/*
6 * This file is part of the package thucke/timezones.
7 *
8 * For the full copyright and license information, please read the
9 * LICENSE file that was distributed with this source code.
10 */
11
13
14use Psr\Log\LoggerInterface;
15use TYPO3\CMS\Core\SingletonInterface;
16use TYPO3\CMS\Extbase\Object\ObjectManagerInterface;
17
25class AbstractExtensionService implements SingletonInterface
26{
30 protected $objectManager;
34 protected $loggingService;
38 protected $logger;
39
46 public function __construct(ObjectManagerInterface $objectManager, LoggingService $loggingService)
47 {
48 $this->objectManager = $objectManager;
49 $this->loggingService = $loggingService;
50 $this->logger = $loggingService->getLogger(get_class($this));
51 }
52}
__construct(ObjectManagerInterface $objectManager, LoggingService $loggingService)