Skip to content

Commit d4596bc

Browse files
committed
Merge branch '1.12.x' into 2.0.x
2 parents a63d9bd + 40e461d commit d4596bc

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

Diff for: composer.json

+3
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@
117117
],
118118
"nette/di": [
119119
"patches/DependencyChecker.patch"
120+
],
121+
"react/http": [
122+
"patches/Sender.patch"
120123
]
121124
}
122125
},

Diff for: composer.lock

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

Diff for: 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)