Skip to content

Commit ece3761

Browse files
committed
prepare for v1.1.2 release
add php style fixes by Pint
1 parent 6620b3a commit ece3761

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# CHANGELOG
22

3-
## [v1.1.x (Unreleased)](https://github.com/onlime/laravel-http-client-global-logger/compare/v1.1.1...main)
3+
## [v1.1.x (Unreleased)](https://github.com/onlime/laravel-http-client-global-logger/compare/v1.1.2...main)
44

5+
## [v1.1.2 (2024-02-16)](https://github.com/onlime/laravel-http-client-global-logger/compare/v1.1.1...v1.1.2)
6+
7+
- Feature | Support for trimming the response body by @pascalbaljet in #3
58

69
## [v1.1.1 (2023-11-13)](https://github.com/onlime/laravel-http-client-global-logger/compare/v1.1.0...v1.1.1)
710

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
},
3535
"require-dev": {
3636
"laravel/framework": "^10.0",
37-
"laravel/pint": "^1.10",
37+
"laravel/pint": "^1.13",
3838
"orchestra/testbench": "^8.8",
39-
"pestphp/pest": "^2.20",
39+
"pestphp/pest": "^2.33",
4040
"pestphp/pest-plugin-arch": "^2.0",
4141
"pestphp/pest-plugin-laravel": "^2.0",
4242
"saloonphp/laravel-http-sender": "^2.0",

src/Mixins/PendingRequestMixin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ class PendingRequestMixin
1414
public function log()
1515
{
1616
/**
17-
* @param string|null $name logger name
17+
* @param string|null $name logger name
1818
* @return $this
1919
*/
20-
return function (string $name = null) {
20+
return function (?string $name = null) {
2121
if (! config('http-client-global-logger.enabled')) {
2222
return $this;
2323
}

0 commit comments

Comments
 (0)