Skip to content

Commit 28a7d65

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

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ Returns backtrace without arguments as string:
227227
```php
228228
$backtrace = backtrace_as_string();
229229
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]
230+
#0 backtrace_as_string() called at [/htdocs/example/routes/web.php:15]
231+
#1 Illuminate\Routing\Router->{closure}() called at [/htdocs/example/vendor/laravel/framework/src/Illuminate/Routing/Route.php:189]
232+
#2 Illuminate\Foundation\Http\Kernel->handle() called at [/htdocs/example/public/index.php:53]
233233
```
234234
235235
#### `minimized_backtrace_as_string()`
@@ -239,9 +239,9 @@ Returns minimized backtrace as string:
239239
```php
240240
$backtrace = minimized_backtrace_as_string();
241241
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
242+
#0 /htdocs/example/routes/web.php:15
243+
#1 /htdocs/example/vendor/laravel/framework/src/Illuminate/Routing/Route.php:189
244+
#2 /htdocs/example/public/index.php:53
245245
```
246246
247247
## Json

0 commit comments

Comments
 (0)