xref: /PHP-7.4/ext/date/tests/ExtendDateTime.phpt (revision caa32517)
1--TEST--
2Extendig DatTime and calling __set_state without args
3--CREDITS--
4Gabriel Caruso (carusogabriel34@gmail.com)
5--FILE--
6<?php
7class MyDateTime extends DateTime {
8    public static function __set_state() {}
9}
10?>
11--EXPECTF--
12Warning: Declaration of MyDateTime::__set_state() should be compatible with DateTime::__set_state(array $array) in %s on line %d
13