Skip to content
Prev Previous commit
Next Next commit
formatting
  • Loading branch information
taylorotwell committed Aug 21, 2025
commit a4d6610bbe767327af658a4fd8a0747399ee3639
2 changes: 1 addition & 1 deletion src/Illuminate/Collections/Enumerable.php
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ public function jsonSerialize(): mixed;
public function toJson($options = 0);

/**
* Get the collection of items as a pretty print formatted JSON.
* Get the collection of items as pretty print formatted JSON.
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Collections/Traits/EnumeratesValues.php
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ public function toJson($options = 0)
}

/**
* Get the collection of items as a pretty print formatted JSON.
* Get the collection of items as pretty print formatted JSON.
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Eloquent/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -1801,7 +1801,7 @@ public function toJson($options = 0)
}

/**
* Convert the model instance to a pretty print formatted JSON.
* Convert the model instance to pretty print formatted JSON.
*
* @return string
*
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Http/Resources/Json/JsonResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public function toJson($options = 0)
}

/**
* Convert the resource to a pretty print formatted JSON.
* Convert the resource to pretty print formatted JSON.
*
* @return string
*
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Pagination/CursorPaginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public function toJson($options = 0)
}

/**
* Convert the object to a pretty print formatted JSON.
* Convert the object to pretty print formatted JSON.
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Pagination/LengthAwarePaginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public function toJson($options = 0)
}

/**
* Convert the object to a pretty print formatted JSON.
* Convert the object to pretty print formatted JSON.
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Pagination/Paginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public function toJson($options = 0)
}

/**
* Convert the object to a pretty print formatted JSON.
* Convert the object to pretty print formatted JSON.
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Support/Fluent.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function toJson($options = 0)
}

/**
* Convert the fluent instance to a pretty print formatted JSON.
* Convert the fluent instance to pretty print formatted JSON.
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Support/MessageBag.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ public function toJson($options = 0)
}

/**
* Convert the object to a pretty print formatted JSON.
* Convert the object to pretty print formatted JSON.
*
* @return string
*/
Expand Down
Loading