phpspec / prophecy

Highly opinionated mocking framework for PHP 5.3+
MIT License
8.53k stars 240 forks source link

Fixed deprecation warning in DisableConstructorPatch.php #614

Closed singinwhale closed 4 months ago

singinwhale commented 7 months ago

Fixes the "Use of "parent" in callables is deprecated" deprecation error when a constructor with arguments is used. See PHP RFC: Deprecate partially supported callables.

I ran into this today and fixed it according to to the proposed replacement stated in the PHP RFC.

Fixes #555