for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Arrays\Tests;
final class Post3
{
public $id = 33;
public $subObject;
public function __construct()
$this->subObject = new Post2();
}