mirror of
https://github.com/php/php-src.git
synced 2026-04-29 11:13:36 +02:00
f39b5c4c25
Closes GH-12422
16 lines
294 B
PHP
16 lines
294 B
PHP
--TEST--
|
|
Attempt to instantiate an IMAP\Connection directly
|
|
--EXTENSIONS--
|
|
imap
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
new IMAP\Connection();
|
|
} catch (Error $ex) {
|
|
echo "Exception: ", $ex->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Exception: Cannot directly construct IMAP\Connection, use imap_open() instead
|