PHP 7.2 new features

Parameter 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){}
}

Trailing comma in list syntax

Object Type Hinting

New Sodium extension

Argon2 in password hash