Skip to content

Commit 47d3de9

Browse files
committed
IHF: New helpers readme info fixed.
1 parent 1493cf7 commit 47d3de9

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,9 @@ Returns backtrace without arguments as string:
227227
```php
228228
$backtrace = backtrace_as_string();
229229
230-
// #0 backtrace_as_string() called at [/full/path/here/example.php:13]
231-
// #1 Example->getBacktrace() called at [/full/path/here/example.php:23]
232-
// #2 Core->run() called at [/full/path/here/src/core.php:33]
233-
// #3 Application->initialize() called at [/full/path/here/src/app.php:45]
230+
#0 backtrace_as_string() called at [/Applications/MAMP/htdocs/laravel/laravel-54/routes/web.php:15]
231+
#1 Illuminate\Routing\Router->{closure}() called at [/Applications/MAMP/htdocs/laravel/laravel-54/vendor/laravel/framework/src/Illuminate/Routing/Route.php:189]
232+
#2 Illuminate\Foundation\Http\Kernel->handle() called at [/Applications/MAMP/htdocs/laravel/laravel-54/public/index.php:53]
234233
```
235234
236235
#### `minimized_backtrace_as_string()`
@@ -240,10 +239,9 @@ Returns minimized backtrace as string:
240239
```php
241240
$backtrace = minimized_backtrace_as_string();
242241
243-
// #0 /full/path/here/example.php:13
244-
// #1 /full/path/here/example.php:23
245-
// #2 /full/path/here/src/core.php:33
246-
// #3 /full/path/here/src/app.php:45
242+
#0 /Applications/MAMP/htdocs/laravel/laravel-54/routes/web.php:15
243+
#1 /Applications/MAMP/htdocs/laravel/laravel-54/vendor/laravel/framework/src/Illuminate/Routing/Route.php:189
244+
#2 /Applications/MAMP/htdocs/laravel/laravel-54/public/index.php:53
247245
```
248246
249247
## Json

0 commit comments

Comments
 (0)