for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Tools\TestAsset;
final class ChildWithSameAttributesClass extends ParentClass
{
/** @var int */
public $parentPublicAttribute = 4;
protected $parentProtectedAttribute = 5;
private $parentPrivateAttribute = 6;
$parentPrivateAttribute
}