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

@@ -6,7 +6,8 @@
namespace Combodo\iTop\Application\Helper;
use WebPage;
use Combodo\iTop\Application\WebPage\WebPage;
use Exception;
use utils;
/**
@@ -52,9 +53,9 @@ class WebResourcesHelper
/**
* Add necessary files (JS) to be able to use CKEditor in the page
*
* @param \WebPage $oPage
* @param WebPage $oPage
*
* @throws \Exception
* @throws Exception
*/
public static function EnableCKEditorToWebPage(WebPage &$oPage): void
{
@@ -85,9 +86,9 @@ class WebResourcesHelper
/**
* Add necessary files (JS/CSS) to be able to use d3/c3.js in the page
*
* @param \WebPage $oPage
* @param WebPage $oPage
*
* @throws \Exception
* @throws Exception
*/
public static function EnableC3JSToWebPage(WebPage &$oPage): void
{
@@ -128,9 +129,9 @@ class WebResourcesHelper
/**
* Add necessary files (JS/CSS) to be able to use simple_graph in the page
*
* @param \WebPage $oPage
* @param WebPage $oPage
*
* @throws \Exception
* @throws Exception
*/
public static function EnableSimpleGraphInWebPage(WebPage &$oPage): void
{