Coding
I had no idea you could "overfeed" constructors without variadics
Been using PHP forever, and found a condition like this while debugging ZF3 Factories. class Foo { public function __construct( $a, $b, $c ){ print_r( [$a, $b, $c] ); } } new Foo( 1, 2, Read more…