summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_038.phpt
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
commitf8d795820e780a6322e054c26c581570613c14f0 (patch)
tree99d3ae01ce564752807341c5743863b4c92513f8 /Zend/tests/closure_038.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'Zend/tests/closure_038.phpt')
-rw-r--r--Zend/tests/closure_038.phpt24
1 files changed, 12 insertions, 12 deletions
diff --git a/Zend/tests/closure_038.phpt b/Zend/tests/closure_038.phpt
index d1ec446c9d..b89ff93c4f 100644
--- a/Zend/tests/closure_038.phpt
+++ b/Zend/tests/closure_038.phpt
@@ -4,22 +4,22 @@ Closure 038: Rebinding closures, change scope, different runtime type
<?php
class A {
- private $x;
+ private $x;
- public function __construct($v) {
- $this->x = $v;
- }
+ public function __construct($v) {
+ $this->x = $v;
+ }
- public function getIncrementor() {
- return function() { return ++$this->x; };
- }
+ public function getIncrementor() {
+ return function() { return ++$this->x; };
+ }
}
class B extends A {
- private $x;
- public function __construct($v) {
- parent::__construct($v);
- $this->x = $v*2;
- }
+ private $x;
+ public function __construct($v) {
+ parent::__construct($v);
+ $this->x = $v*2;
+ }
}
$a = new A(0);