ChildClass.php 587 B

123456789101112131415161718192021222324
  1. <?php declare(strict_types=1);
  2. /*
  3. * This file is part of sebastian/object-reflector.
  4. *
  5. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace SebastianBergmann\ObjectReflector\TestFixture;
  11. class ChildClass extends ParentClass
  12. {
  13. private $privateInChild = 'private';
  14. private $protectedInChild = 'protected';
  15. private $publicInChild = 'public';
  16. public function __construct()
  17. {
  18. $this->undeclared = 'undeclared';
  19. }
  20. }