Skip to content

Commit

Permalink
Merge pull request #104 from bytehead/fix/namespace
Browse files Browse the repository at this point in the history
Fix namespace imports
  • Loading branch information
hschottm authored Jan 21, 2025
2 parents 5aa8faf + 7f8aac1 commit 0776f27
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
"contao/core-bundle": "~5.3",
"contao-community-alliance/composer-plugin":"~3.2"
},
"require-dev": {
"contao/calendar-bundle": "~5.3",
"contao/comments-bundle": "~5.3",
"contao/faq-bundle": "~5.3"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
Expand Down
15 changes: 15 additions & 0 deletions src/Resources/contao/modules/ModuleEventReaderTags.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,28 @@

namespace Hschottm\TagsBundle;

use Contao\Calendar;
use Contao\CalendarEventsModel;
use Contao\CalendarModel;
use Contao\ContentModel;
use Contao\CoreBundle\Util\UrlUtil;
use Contao\Date;
use Contao\Environment;
use Contao\Events;
use Contao\Input;
use Contao\ModuleEventReader;
use Contao\CoreBundle\Exception\InternalServerErrorException;
use Contao\CoreBundle\Exception\PageNotFoundException;
use Contao\CoreBundle\Exception\RedirectResponseException;
use Contao\CoreBundle\Routing\ResponseContext\HtmlHeadBag\HtmlHeadBag;
use Contao\Comments;
use Contao\FrontendTemplate;
use Contao\PageModel;
use Contao\StringUtil;
use Contao\System;
use Contao\Template;
use Contao\UserModel;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;

/**
* Contao Open Source CMS - tags extension
Expand Down
4 changes: 4 additions & 0 deletions src/Resources/contao/modules/ModuleEventlistTags.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Hschottm\TagsBundle;

use Contao\Config;
use Contao\Environment;
use Contao\ModuleEventlist;
use Contao\CoreBundle\Exception\PageNotFoundException;
use Contao\CoreBundle\Exception\OutOfBoundsException;
Expand All @@ -10,9 +12,11 @@
use Contao\Date;
use Contao\FilesModel;
use Contao\FrontendTemplate;
use Contao\Pagination;
use Contao\StringUtil;
use Contao\Events;
use Contao\CalendarEventsModel;
use Contao\System;

/**
* Contao Open Source CMS - tags extension
Expand Down
3 changes: 3 additions & 0 deletions src/Resources/contao/modules/ModuleFaqListTags.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

namespace Hschottm\TagsBundle;

use Contao\FaqCategoryModel;
use Contao\ModuleFaqList;
use Contao\Database;
use Contao\StringUtil;
use Contao\System;

/**
* Contao Open Source CMS - tags extension
Expand Down

0 comments on commit 0776f27

Please sign in to comment.