mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-03 08:09:25 +03:00
23 lines
359 B
PHP
23 lines
359 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Created by mcfedr on 30/06/15 21:05
|
||
|
*/
|
||
|
|
||
|
namespace Nelmio\ApiDocBundle\Tests\Fixtures\Model;
|
||
|
|
||
|
class JsonSerializableOptionalConstructorTest implements \JsonSerializable
|
||
|
{
|
||
|
public function __construct($optional = null)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function jsonSerialize()
|
||
|
{
|
||
|
return array();
|
||
|
}
|
||
|
}
|