Skip to content

Commit 40e461d

Browse files
committed
react/http PHP 8.4 patch
1 parent bbf44d9 commit 40e461d

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

composer.json

+3
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@
123123
"nette/neon": [
124124
"patches/NetteNeonStringNode.patch",
125125
"patches/NeonParser.patch"
126+
],
127+
"react/http": [
128+
"patches/Sender.patch"
126129
]
127130
}
128131
},

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

patches/Sender.patch

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- src/Io/Sender.php 2024-03-27 18:20:46
2+
+++ src/Io/Sender.php 2024-10-14 10:19:28
3+
@@ -48,7 +48,7 @@
4+
* @param ConnectorInterface|null $connector
5+
* @return self
6+
*/
7+
- public static function createFromLoop(LoopInterface $loop, ConnectorInterface $connector = null)
8+
+ public static function createFromLoop(LoopInterface $loop, ?ConnectorInterface $connector = null)
9+
{
10+
if ($connector === null) {
11+
$connector = new Connector(array(), $loop);

0 commit comments

Comments
 (0)