|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2016-03-21 21:30 UTC] requinix@php.net
 
-Status: Open
+Status: Wont fix
  [2016-03-21 21:30 UTC] requinix@php.net
  [2016-03-21 21:36 UTC] nikic@php.net
 
-Status: Wont fix
+Status: Open
  [2016-03-21 21:36 UTC] nikic@php.net
  [2016-03-21 21:42 UTC] requinix@php.net
  [2016-03-21 21:50 UTC] nikic@php.net
  [2016-03-21 21:50 UTC] nikic@php.net
 
-Status: Open
+Status: Closed
  [2016-07-20 11:32 UTC] davey@php.net
  [2018-11-23 09:23 UTC] dragondreamer at live dot com
 
-: temp at temp dot ru
+: dragondreamer at live dot com
  [2018-11-23 09:23 UTC] dragondreamer at live dot com
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 01:00:01 2025 UTC | 
Description: ------------ PHP 7 allows interfaces with final and abstract methods. Test script: --------------- <?php interface test { final function test1(); abstract function test2(); } Expected result: ---------------- Fatal error: Access type for interface method test::test1() must be omitted in /in/vqFDT on line 5 When the first mistake is fixed, then Fatal error: Access type for interface method test::test2() must be omitted in /in/vqFDT on line 6 Actual result: -------------- no errors