mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-21 03:14:11 +01:00
20 lines
320 B
PHP
20 lines
320 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\PropertyTree;
|
|
|
|
/**
|
|
* @since 3.3.0
|
|
*/
|
|
class CollectionOfValues extends AbstractProperty
|
|
{
|
|
public function ToPHPFormBlock(&$aPHPFragments = []): string
|
|
{
|
|
return '';
|
|
}
|
|
}
|