N°6516 - Add @experimental PHP annotation on temporary objects features

This commit is contained in:
Benjamin Dalsass
2023-07-05 14:24:05 +02:00
parent 8292b16387
commit e654daf4a5
10 changed files with 67 additions and 3 deletions

View File

@@ -8,6 +8,15 @@ namespace Combodo\iTop\Service\TemporaryObjects;
use MetaModel;
/**
* TemporaryObjectConfig.
*
* Handle temporary object configuration.
*
* @experimental do not use, this feature will be part of a future version
*
* @since 3.1
*/
class TemporaryObjectConfig
{

View File

@@ -13,6 +13,8 @@ use iBackgroundProcess;
*
* Background task to collect and garbage expired temporary objects..
*
* @experimental do not use, this feature will be part of a future version
*
* @since 3.1
*/
class TemporaryObjectGC implements iBackgroundProcess

View File

@@ -11,6 +11,8 @@ namespace Combodo\iTop\Service\TemporaryObjects;
*
* Helper with useful functions.
*
* @experimental do not use, this feature will be part of a future version
*
* @since 3.1
*/
class TemporaryObjectHelper

View File

@@ -21,6 +21,8 @@ use utils;
*
* Manager class to perform global temporary objects tasks.
*
* @experimental do not use, this feature will be part of a future version
*
* @since 3.1
*/
class TemporaryObjectManager

View File

@@ -19,6 +19,8 @@ use TemporaryObjectDescriptor;
*
* Repository class to perform ORM tasks.
*
* @experimental do not use, this feature will be part of a future version
*
* @since 3.1
*/
class TemporaryObjectRepository

View File

@@ -11,6 +11,15 @@ use Combodo\iTop\Service\Events\Description\EventDescription;
use Combodo\iTop\Service\Events\EventService;
use Combodo\iTop\Service\Events\iEventServiceSetup;
/**
* TemporaryObjectsEvents.
*
* Handle temporary objects events
*
* @experimental do not use, this feature will be part of a future version
*
* @since 3.1
*/
class TemporaryObjectsEvents implements iEventServiceSetup
{