Timezones
ExtensionHelperService.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;
15
24{
28 protected $loggingService;
29
34 {
35 $this->loggingService = $loggingService;
36 }
37
46 public function getLogger(string $name): LoggerInterface
47 {
48 return $this->loggingService->getLogger($name);
49 }
50}