Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Php74.php 210B

1234567891011121314
  1. <?php
  2. namespace Symfony\Component\VarDumper\Tests\Fixtures;
  3. class Php74
  4. {
  5. public $p1 = 123;
  6. public \stdClass $p2;
  7. public function __construct()
  8. {
  9. $this->p2 = new \stdClass();
  10. }
  11. }