b8c78a9141
These were strictly to avoid people writing code that worked under hhvm, but then fataled under hphpi. Since hphpi is long gone, its time we removed it (no danger of breaking real code since anything that worked before continues to work - and hphp was already "doing the right thing" because it flattened traits).
5 linhas
149 B
PHP
5 linhas
149 B
PHP
<?php
|
|
abstract class A { abstract public function a(int $a1 = null); }
|
|
class B extends A { public function a(Integer $a1 = null) {} }
|
|
|