?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/pimple/pimple/ext/pimple/tests/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/pimple/pimple/ext/pimple

?? Viewing: 011.phpt

--TEST--
Test service callback throwing an exception
--SKIPIF--
<?php if (!extension_loaded("pimple")) print "skip"; ?>
--FILE--
<?php
class CallBackException extends RuntimeException { }

$p = new Pimple\Container();
$p['foo'] = function () { throw new CallBackException; };
try {
	echo $p['foo'] . "\n";
	echo "should not come here";
} catch (CallBackException $e) {
	echo "all right!";
}
?>
--EXPECTF--
all right!


??

??