| 12345678910111213141516171819202122 |
- <?php
- declare(strict_types=1);
- namespace Meramo\Chatbotui\Domain\Repository;
- /**
- * This file is part of the "Chatbot UI" Extension for TYPO3 CMS.
- *
- * For the full copyright and license information, please read the
- * LICENSE.txt file that was distributed with this source code.
- *
- * (c) 2023 Meramo Developer <develop@meramo.de>, Meramo Verlag GmbH
- */
- /**
- * The repository for Urls
- */
- class UrlRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
- {
- }
|