Skip to content

Commit bc86d2c

Browse files
committed
Indentation
1 parent 91ddb33 commit bc86d2c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Zend/tests/partial_application/rfc_examples_eval_order.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ PFA RFC examples: "Evaluation order" section
44
<?php
55

66
function getArg() {
7-
print __FUNCTION__ . PHP_EOL;
8-
return 'hi';
7+
print __FUNCTION__ . PHP_EOL;
8+
return 'hi';
99
}
1010

1111
function speak(string $who, string $msg) {
12-
printf("%s: %s\n", $who, $msg);
12+
printf("%s: %s\n", $who, $msg);
1313
}
1414

1515
$arrow = static fn($who) => speak($who, getArg());

Zend/tests/partial_application/variation_gc_001.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ PFA variation: GC (001)
55
#[AllowDynamicProperties]
66
class Foo {
77

8-
public function __construct($a) {
9-
$this->method = self::__construct(new stdClass, ...);
10-
}
8+
public function __construct($a) {
9+
$this->method = self::__construct(new stdClass, ...);
10+
}
1111
}
1212

1313
$foo = new Foo(new stdClass);

0 commit comments

Comments
 (0)