mirror of
https://github.com/friendica/friendica
synced 2024-11-18 05:43:42 +00:00
15 lines
333 B
PHP
15 lines
333 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
use Friendica\Test\Util\SerializableObjectDouble;
|
|
use ParagonIE\HiddenString\HiddenString;
|
|
|
|
return [
|
|
'object' => [
|
|
'toString' => new HiddenString('test'),
|
|
'serializable' => new SerializableObjectDouble(),
|
|
],
|
|
];
|