Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build-cs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/vendor
13 changes: 13 additions & 0 deletions build-cs/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"require-dev": {
"consistence-community/coding-standard": "^3.11.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"slevomat/coding-standard": "^8.8.0",
"squizlabs/php_codesniffer": "^3.5.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
333 changes: 333 additions & 0 deletions build-cs/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions build/baseline-7.3.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
parameters:
ignoreErrors:
-
message:
"""
#^Call to deprecated method assertFileNotExists\\(\\) of class PHPUnit\\\\Framework\\\\Assert\\:
https\\://github\\.com/sebastianbergmann/phpunit/issues/4077$#
"""
count: 1
path: ../src/Testing/LevelsTestCase.php
-
message: "#^Call to function method_exists\\(\\) with 'PHPUnit\\\\\\\\Framework\\\\\\\\TestCase' and 'assertFileDoesNotEx…' will always evaluate to true\\.$#"
count: 1
path: ../src/Testing/LevelsTestCase.php
11 changes: 11 additions & 0 deletions build/datetime-php-83.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
parameters:
ignoreErrors:
-
message: "#^If condition is always false\\.$#"
count: 1
path: ../src/Type/Php/DateTimeModifyReturnTypeExtension.php

-
message: "#^Strict comparison using \\=\\=\\= between DateTime and false will always evaluate to false\\.$#"
count: 1
path: ../src/Type/Php/DateTimeModifyReturnTypeExtension.php
11 changes: 11 additions & 0 deletions patches/Sender.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- src/Io/Sender.php 2024-03-27 18:20:46
+++ src/Io/Sender.php 2024-10-14 10:19:28
@@ -48,7 +48,7 @@
* @param ConnectorInterface|null $connector
* @return self
*/
- public static function createFromLoop(LoopInterface $loop, ConnectorInterface $connector = null)
+ public static function createFromLoop(LoopInterface $loop, ?ConnectorInterface $connector = null)
{
if ($connector === null) {
$connector = new Connector(array(), $loop);
Loading
Loading