. */ declare(strict_types=1); namespace App\Tests\Services\EntityMergers\Mergers; use App\Entity\Parts\Category; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; class MergeTestClass { public int $int_property = 0; public ?float $float_property = null; public ?string $string_property = null; public string $non_nullable_string = ''; public bool $bool_property = false; public Collection $collection; public ?Category $category; public function __construct() { $this->collection = new ArrayCollection(); } }