--TEST--
Psr\Log\AbstractLogger
--SKIPIF--
<?php include('skip.inc'); ?>
--FILE--
<?php
use Psr\Log\AbstractLogger;
try {
new AbstractLogger();
} catch( \EngineException $e ) {
echo $e->getMessage();
} catch( \Throwable $e ) {
echo $e->getMessage();
}
--EXPECTF--
%SCannot instantiate abstract class PsrExt\Log\AbstractLogger%S
Back to Directory