Compare commits

...

3 Commits

Author SHA1 Message Date
Stephen Abello
7b44ec23a1 Fix return type in PHPDoc thanks to @jbostoen 2025-07-28 16:14:13 +02:00
BenGrenoble
f00b8d529c N°8286 - Be able to add additional data in iTop session files via custom classes
Change to fit convention.
2025-07-24 10:59:48 +02:00
BenGrenoble
af44ffd0ad N°8286 - Be able to add additional data in iTop session files via custom classes
Experimental warning
2025-07-24 10:28:15 +02:00
2 changed files with 8 additions and 1 deletions

View File

@@ -7081,7 +7081,7 @@ abstract class MetaModel
* @param array $aParams
* @param bool $bAllowAllData
*
* @return \DBObject
* @return \DBObject|null
* @throws \OQLException
*/
public static function GetObjectFromOQL($sQuery, $aParams = null, $bAllowAllData = false)

View File

@@ -2,6 +2,13 @@
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 {
public function __construct();