fix: put namespaces as first line after php opening tag

This commit is contained in:
Marvin Flock
2025-05-13 19:45:26 +02:00
parent ec54893106
commit d54e248d02
3 changed files with 2 additions and 5 deletions
@@ -1,10 +1,9 @@
<?php <?php
namespace Dtfb\Component\com_sportsmanager\Administrator\Controller;
/* /*
* Sports Manager (C) 2006-2020, Sven Nickel * Sports Manager (C) 2006-2020, Sven Nickel
*/ */
namespace Dtfb\Component\com_sportsmanager\Administrator\Controller;
// No direct access to this file // No direct access to this file
use Joomla\CMS\MVC\Controller\BaseController; use Joomla\CMS\MVC\Controller\BaseController;
@@ -1,5 +1,4 @@
<?php <?php
namespace Dtfb\Component\com_sportsmanager\Administrator\Extension; namespace Dtfb\Component\com_sportsmanager\Administrator\Extension;
defined('JPATH_PLATFORM') or die; defined('JPATH_PLATFORM') or die;
@@ -1,10 +1,9 @@
<?php <?php
namespace Dtfb\Component\com_sportsmanager\Administrator\View\Sportsmanager;
/* /*
* Sports Manager (C) 2006-2020, Sven Nickel * Sports Manager (C) 2006-2020, Sven Nickel
*/ */
namespace Dtfb\Component\com_sportsmanager\Administrator\View\Sportsmanager;
// No direct access to this file // No direct access to this file
use Joomla\CMS\Language\Text; use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView; use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;