1--TEST-- 2Try to instantiate all classes without arguments 3--FILE-- 4<?php 5 6foreach (get_declared_classes() as $class) { 7 try { 8 new $class; 9 } catch (Throwable) {} 10} 11 12?> 13===DONE=== 14--EXPECT-- 15===DONE=== 16