mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-18 16:18:47 +02:00
N°8772 - XML description wip
This commit is contained in:
26
sources/PropertyTree/AbstractProperty.php
Normal file
26
sources/PropertyTree/AbstractProperty.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
namespace Combodo\iTop\PropertyTree;
|
||||
|
||||
use Combodo\iTop\PropertyTree\ValueType\AbstractValueType;
|
||||
|
||||
abstract class AbstractProperty
|
||||
{
|
||||
private ?AbstractValueType $oValueType;
|
||||
|
||||
public function GetValueType(): ?AbstractValueType
|
||||
{
|
||||
return $this->oValueType;
|
||||
}
|
||||
|
||||
public function SetValueType(AbstractValueType $oValueType): void
|
||||
{
|
||||
$this->oValueType = $oValueType;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user