Skip to content

Commit cbab922

Browse files
committed
"of cause" should have been "of course" but is not needed anyway
#noticed by Zeev
1 parent 66aba3c commit cbab922

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/classes/abstract.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $t = new pass();
2222
$t->show();
2323
$t->error();
2424

25-
echo "Done\n"; // shouldn't be displayed of cause
25+
echo "Done\n"; // shouldn't be displayed
2626
?>
2727
--EXPECTF--
2828
Call to function show()

tests/classes/abstract_class.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $t2->show();
2121
$t = new fail();
2222
$t->show();
2323

24-
echo "Done\n"; // shouldn't be displayed of cause
24+
echo "Done\n"; // shouldn't be displayed
2525
?>
2626
--EXPECTF--
2727
Call to function show()

tests/classes/static_mix_1.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class fail extends pass {
2020
pass::show();
2121
fail::show();
2222

23-
echo "Done\n"; // shouldn't be displayed of cause
23+
echo "Done\n"; // shouldn't be displayed
2424
?>
2525
--EXPECTF--
2626
Fatal error: Cannot make static method pass::show() non static in class fail in %s on line %d

tests/classes/static_mix_2.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $t = new pass();
2121
$t->show();
2222
fail::show();
2323

24-
echo "Done\n"; // shouldn't be displayed of cause
24+
echo "Done\n"; // shouldn't be displayed
2525
?>
2626
--EXPECTF--
2727
Fatal error: Cannot make non static method pass::show() static in class fail in %s on line %d

0 commit comments

Comments
 (0)