mirror of
https://github.com/Combodo/iTop.git
synced 2026-07-20 13:46:54 +02:00
14 lines
273 B
PHP
14 lines
273 B
PHP
<?php // phpcs:disable WebimpressCodingStandard.NamingConventions.Interface.Suffix
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Laminas\Stdlib;
|
|
|
|
/**
|
|
* @deprecated Since 3.1.0; use the native JsonSerializable interface
|
|
*/
|
|
interface JsonSerializable extends \JsonSerializable
|
|
{
|
|
}
|