1--TEST-- 2ReflectionExtension::getDependencies() method on an extension with one optional dependency 3--CREDITS-- 4Felix De Vliegher <felix.devliegher@gmail.com> 5--FILE-- 6<?php 7$standard = new ReflectionExtension('standard'); 8var_dump($standard->getDependencies()); 9?> 10--EXPECTF-- 11array(1) { 12 ["session"]=> 13 %s(8) "Optional" 14} 15