for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\Json\Tests;
class Post implements \JsonSerializable
{
private $id;
private $title;
public function __construct($id, $title)
$this->id = $id;
$this->title = $title;
}
public function jsonSerialize()
return [
'id' => $this->id,
'title' => $this->title,
];