bug70266.phpt 221 B

12345678
  1. --TEST--
  2. Bug #70266 (DateInterval::__construct.interval_spec is not supposed to be optional)
  3. --FILE--
  4. <?php
  5. var_dump((new ReflectionParameter(['DateInterval', '__construct'], 0))->isOptional());
  6. ?>
  7. --EXPECT--
  8. bool(false)