PHP 7.2 new features
13 Jul 2018Parameter type change between parent class and child class
class Parent{
public function sum($numbers){}
}
class Child extends Parent{
public function sum(array $numbers){}
}
Parameter type change between parent abstract class
class Parent{
public function sum($numbers){}
}
class Child extends Parent{
public function sum(array $numbers){}
}