N°8796 - Add PHP code style validation in iTop and extensions - format whole code base

This commit is contained in:
odain
2025-11-07 15:39:53 +01:00
parent 12f23113f5
commit 890a2568c8
2110 changed files with 53099 additions and 63885 deletions

View File

@@ -2,14 +2,15 @@
namespace Combodo\iTop\SessionTracker;
/**
* @experimental for internal use only, subject to change without notice.
*
* Do not use this interface in your code.
*
* @since 3.2.2
*/
interface iSessionHandlerExtension {
/**
* @experimental for internal use only, subject to change without notice.
*
* Do not use this interface in your code.
*
* @since 3.2.2
*/
interface iSessionHandlerExtension
{
public function __construct();
/**
@@ -19,5 +20,5 @@ interface iSessionHandlerExtension {
*
* @return void
*/
public function CompleteSessionData(array $aJson, array &$aData) : void;
}
public function CompleteSessionData(array $aJson, array &$aData): void;
}