Arquivos
hhvm/hphp/test/quick/impl_abstract_dv_i_Int.php
T
Mark Williams b8c78a9141 Get rid of some hphpiCompat brokenness
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).
2013-04-22 14:43:52 -07:00

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