From: Aaron Piotrowski Date: Fri, 19 Aug 2016 15:05:16 +0000 (-0500) Subject: Revert "Append \ to class name returned from ReflectionType::__toString()" X-Git-Tag: php-7.1.0RC1~89 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c9ee0cb2026ccf734c5b09b1b1643f32cd4dad47;p=php Revert "Append \ to class name returned from ReflectionType::__toString()" This reverts commit 20fdd47921f423728b409fd0ae0106dab9c34573. --- diff --git a/ext/reflection/tests/ReflectionNamedType.phpt b/ext/reflection/tests/ReflectionNamedType.phpt index 1ce1222216..1e8f55ac9d 100644 --- a/ext/reflection/tests/ReflectionNamedType.phpt +++ b/ext/reflection/tests/ReflectionNamedType.phpt @@ -32,10 +32,10 @@ var_dump((string) $return); ?> --EXPECTF-- string(11) "Traversable" -string(13) "?\Traversable" +string(12) "?Traversable" string(6) "string" string(7) "?string" string(4) "Test" -string(6) "?\Test" +string(5) "?Test" string(4) "Test" -string(6) "?\Test" \ No newline at end of file +string(5) "?Test" diff --git a/ext/reflection/tests/ReflectionType_001.phpt b/ext/reflection/tests/ReflectionType_001.phpt index c0ae24490c..a317566887 100644 --- a/ext/reflection/tests/ReflectionType_001.phpt +++ b/ext/reflection/tests/ReflectionType_001.phpt @@ -79,7 +79,7 @@ foreach ([ bool(true) bool(false) bool(false) -string(9) "\stdClass" +string(8) "stdClass" ** Function 0 - Parameter 1 bool(true) bool(false) @@ -94,7 +94,7 @@ string(8) "callable" bool(true) bool(true) bool(false) -string(10) "?\stdClass" +string(9) "?stdClass" ** Function 0 - Parameter 4 bool(false) ** Function 0 - Parameter 5 @@ -121,19 +121,19 @@ string(5) "float" bool(true) bool(false) bool(false) -string(12) "\NotExisting" +string(11) "NotExisting" ** Function 1 - Parameter 0 bool(true) bool(false) bool(false) -string(5) "\Test" +string(4) "Test" *** methods ** Method 0 - parameter 0 bool(true) bool(false) bool(false) -string(11) "\SplSubject" +string(10) "SplSubject" ** Method 1 - parameter 0 bool(true) bool(false) @@ -148,7 +148,7 @@ string(6) "parent" bool(true) bool(false) bool(false) -string(5) "\Test" +string(4) "Test" *** return types ** Function/method return type 0 @@ -157,7 +157,7 @@ bool(false) bool(true) bool(false) bool(false) -string(9) "\stdClass" +string(8) "stdClass" ** Function/method return type 2 bool(true) bool(false) @@ -177,9 +177,9 @@ string(6) "parent" bool(true) bool(false) bool(false) -string(5) "\Test" +string(4) "Test" ** Function/method return type 6 bool(true) bool(false) bool(false) -string(5) "\Test" +string(4) "Test" diff --git a/ext/reflection/tests/ReflectionType_002.phpt b/ext/reflection/tests/ReflectionType_002.phpt index 9c9c77b76b..8313862ec5 100644 --- a/ext/reflection/tests/ReflectionType_002.phpt +++ b/ext/reflection/tests/ReflectionType_002.phpt @@ -12,6 +12,6 @@ unset($rm, $rp); var_dump((string) $rt, (string) $rrt); --EXPECT-- -string(5) "\Test" -string(6) "\Test2" +string(4) "Test" +string(5) "Test2" diff --git a/ext/reflection/tests/ReflectionType_possible_types.phpt b/ext/reflection/tests/ReflectionType_possible_types.phpt index 0db5b7c3f0..81e08550f2 100644 --- a/ext/reflection/tests/ReflectionType_possible_types.phpt +++ b/ext/reflection/tests/ReflectionType_possible_types.phpt @@ -28,4 +28,4 @@ string(6) "string" string(4) "bool" string(5) "array" string(8) "callable" -string(9) "\StdClass" +string(8) "StdClass"