summaryrefslogtreecommitdiff
path: root/Zend/tests/bug75079_2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug75079_2.phpt')
-rw-r--r--Zend/tests/bug75079_2.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug75079_2.phpt b/Zend/tests/bug75079_2.phpt
index 6e0b1cd27f..92518555b4 100644
--- a/Zend/tests/bug75079_2.phpt
+++ b/Zend/tests/bug75079_2.phpt
@@ -6,7 +6,7 @@ Bug #75079 variation without traits
class Foo
{
private static $bar = 123;
-
+
static function test(){
return function(){
return function(){
@@ -22,7 +22,7 @@ $f = Foo::test();
var_dump($f()());
class A{}
-$a = new A;
+$a = new A;
var_dump($f->bindTo($a, A::CLASS)()());
?>