1--TEST-- 2Imagick::__construct false 3--SKIPIF-- 4<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> 5--FILE-- 6<?php 7 8try { 9 $imagick = new Imagick(false); 10} 11catch (\ImagickException $ie) { 12 echo $ie->getMessage()."\n"; 13} 14 15 16?> 17--EXPECTF-- 18Constructor shouldn't be called with a boolean as the filename