N°7059 - Symfony 6.4 - Add missing namespaces to match PSR-4 convention (#589)

This commit is contained in:
Benjamin Dalsass
2023-12-21 10:18:11 +01:00
committed by GitHub
parent afbdff928d
commit 34f0053db7
151 changed files with 669 additions and 289 deletions

View File

@@ -17,6 +17,8 @@
* You should have received a copy of the GNU Affero General Public License
*/
use Combodo\iTop\Application\WebPage\iTopWebPage;
require_once ('../../../approot.inc.php');
require_once(APPROOT.'application/application.inc.php');
require_once(APPROOT.'application/startup.inc.php');

View File

@@ -23,6 +23,8 @@
* You should have received a copy of the GNU Affero General Public License
*/
use Combodo\iTop\Application\WebPage\iTopWebPage;
require_once('../../../approot.inc.php');
require_once(APPROOT.'/application/application.inc.php');
require_once(APPROOT.'/application/startup.inc.php');

View File

@@ -1,4 +1,7 @@
<?php
use Combodo\iTop\Application\WebPage\WebPage;
/**
* Copyright (C) 2013-2023 Combodo SARL
*

View File

@@ -10,7 +10,7 @@ use Combodo\iTop\Application\Helper\WebResourcesHelper;
use Combodo\iTop\Test\UnitTest\ItopTestCase;
/**
* @covers \WebPage
* @covers WebPage
*/
class WebResourcesHelperTest extends ItopTestCase
{