Chris@2: Chris@2: * Chris@2: * For the full copyright and license information, please view the LICENSE Chris@2: * file that was distributed with this source code. Chris@2: */ Chris@2: Chris@2: declare(strict_types=1); Chris@2: Chris@2: namespace SebastianBergmann\ObjectReflector\TestFixture; Chris@2: Chris@2: class ChildClass extends ParentClass Chris@2: { Chris@2: private $privateInChild = 'private'; Chris@2: private $protectedInChild = 'protected'; Chris@2: private $publicInChild = 'public'; Chris@2: Chris@2: public function __construct() Chris@2: { Chris@2: $this->undeclared = 'undeclared'; Chris@2: } Chris@2: }