mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +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();
|
|
}
|
|
}
|