Skip to content

Commit ae1c059

Browse files
committed
...
1 parent 7928d1f commit ae1c059

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tutorials/intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ phpdbg provides many options for specifying break points, as illustrated by a sc
2424

2525
In those case where you wish to program your break points in userland, phpdbg includes a userland API, in the shape of two simple functions:
2626

27-
```
27+
```php
2828
/**
2929
* Sets a breakpoint at the next opcode address
3030
* @return void
@@ -33,7 +33,7 @@ proto void phpdbg_break(void);
3333
```
3434

3535

36-
```
36+
```php
3737
/**
3838
* Clear breakpoints before continuing execution
3939
* @return void
@@ -55,7 +55,7 @@ Direct access to eval allows you to change _anything_ at _any_ time during execu
5555

5656
Library code for this section:
5757

58-
```
58+
```php
5959
<?php
6060
class phpdbg {
6161
public function isGreat($greeting = null) {

0 commit comments

Comments
 (0)