mirror of
https://github.com/saccas/mjml-typo3.git
synced 2024-11-14 17:56:10 +01:00
11 lines
309 B
PHP
11 lines
309 B
PHP
|
<?php
|
||
|
|
||
|
if (!defined('TYPO3_MODE')) {
|
||
|
die('Access denied.');
|
||
|
}
|
||
|
|
||
|
\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Extbase\Object\Container\Container::class)->registerImplementation(
|
||
|
\Saccas\Mjml\Domain\Renderer\RendererInterface::class,
|
||
|
\Saccas\Mjml\Domain\Renderer\Command::class
|
||
|
);
|