mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
25 lines
501 B
PHP
25 lines
501 B
PHP
<?php
|
|
/**
|
|
* Created by mcfedr on 30/06/15 21:05
|
|
*/
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\Fixtures\Model;
|
|
|
|
class JsonSerializableTest implements \JsonSerializable
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function jsonSerialize()
|
|
{
|
|
return array(
|
|
'id' => 123,
|
|
'name' => 'My name',
|
|
'child' => array(
|
|
'value' => array(1, 2, 3)
|
|
),
|
|
'another' => new JsonSerializableOptionalConstructorTest()
|
|
);
|
|
}
|
|
}
|