Skip to content

Commit 93ea77b

Browse files
committed
Remove vestigial comment.
1 parent 0d432c6 commit 93ea77b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/tests/pipe_operator/exception_interruption.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A pipe interrupted by an exception, to demonstrate correct order of execution.
66
function foo() { echo __FUNCTION__, PHP_EOL; return 1; }
77
function bar() { echo __FUNCTION__, PHP_EOL; return false; }
88
function baz($in) { echo __FUNCTION__, PHP_EOL; return $in; }
9-
function quux($in) { echo __FUNCTION__, PHP_EOL; throw new \Exception('Oops'); } // This is line 6.
9+
function quux($in) { echo __FUNCTION__, PHP_EOL; throw new \Exception('Oops'); }
1010

1111
try {
1212
$result = foo()

0 commit comments

Comments
 (0)