Skip to content

Commit

Permalink
Don't limit response JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot committed Jun 21, 2016
1 parent 68c8f5a commit 0b692e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
composer.lock
.php_cs.cache
/vendor/
/vendor/
/public
2 changes: 1 addition & 1 deletion src/resources/views/documentarian.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
> Example response:

```json
{!! str_limit(json_encode(json_decode($parsedRoute['response']), JSON_PRETTY_PRINT)) !!}
{!! json_encode(json_decode($parsedRoute['response']), JSON_PRETTY_PRINT) !!}
```
@endif

Expand Down

0 comments on commit 0b692e3

Please sign in to comment.