1--TEST-- 2Test namespaced and non-lowercase breakpoint names 3--PHPDBG-- 4b foo\bar::foo 5b \Foo\Bar::Foo 6r 7c 8q 9--EXPECTF-- 10[Successful compilation of %s] 11prompt> [Breakpoint #0 added at foo\bar::foo] 12prompt> [Breakpoint exists at Foo\Bar::Foo] 13prompt> [Breakpoint #0 in foo\bar::foo() at %s:6, hits: 1] 14>00006: var_dump($bar); 15 00007: } 16 00008: } 17prompt> string(4) "test" 18[Script ended normally] 19prompt> 20--FILE-- 21<?php 22 23namespace Foo { 24 class Bar { 25 function Foo($bar) { 26 var_dump($bar); 27 } 28 } 29} 30 31namespace { 32 (new \Foo\Bar)->Foo("test"); 33} 34 35