Skip to content

Commit 4343d96

Browse files
committed
Fix code examples
| Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.6 | Fixed tickets |
1 parent 9ec09ee commit 4343d96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/console/helpers/debug_formatter.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ display information that the program is started::
5151

5252
$output->writeln($debugFormatter->start(
5353
spl_object_hash($process),
54-
'Some process description')
55-
);
54+
'Some process description'
55+
));
5656

5757
$process->run();
5858

@@ -68,7 +68,7 @@ You can tweak the prefix using the third argument::
6868
spl_object_hash($process),
6969
'Some process description',
7070
'STARTED'
71-
);
71+
));
7272
// will output:
7373
// STARTED Some process description
7474

0 commit comments

Comments
 (0)