php-src/ext/imap/tests/imap_final.phpt
Ayesh Karunaratne af68d4aae6 IMAP: Declare IMAPConnection class as final (stub+test)
Updates the `IMAPConnection` class stub to make sure it has the `final` flag, and adds a test to verify it.
2020-12-23 21:21:32 +01:00

11 lines
304 B
PHP

--TEST--
Check that IMAPConnection is declared final
--SKIPIF--
<?php
extension_loaded('imap') or die('skip imap extension not available in this build');
--FILE--
<?php
class T extends IMAPConnection {}
--EXPECTF--
Fatal error: Class T may not inherit from final class (IMAPConnection) in %s on line %d