mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 17:08:58 +03:00
14 lines
216 B
PHP
14 lines
216 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use Shlinkio\Shlink\Common\Template\Extension\TranslatorExtension;
|
|
|
|
return [
|
|
|
|
'plates' => [
|
|
'extensions' => [
|
|
TranslatorExtension::class,
|
|
],
|
|
],
|
|
|
|
];
|