diff --git a/composer.json b/composer.json index f188a92bb..e50a9a029 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "fusonic/opengraph": "^2.3.0", "giggsey/libphonenumber-for-php-lite": "^8.13.48", "guzzlehttp/guzzle": "^7.9.2", - "icewind/searchdav": "^3.1.0", + "icewind/searchdav": "^3.2.0", "icewind/streams": "^0.7.7", "kornrunner/blurhash": "^1.2", "laravel/serializable-closure": "^1.3.5", diff --git a/composer.lock b/composer.lock index 65a9057bf..b072cb101 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8439d4f72d510b5e5eaf9bd12290d182", + "content-hash": "3590e1faea96199b2a06d73cd3ea33fc", "packages": [ { "name": "aws/aws-crt-php", @@ -1476,16 +1476,16 @@ }, { "name": "icewind/searchdav", - "version": "v3.1.0", + "version": "v3.2.0", "source": { "type": "git", "url": "https://github.com/icewind1991/SearchDAV.git", - "reference": "8339181df313361da4daee6cb1c7f144f67f8492" + "reference": "3865288b6962de33086d4e02ec3584610c32b773" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/icewind1991/SearchDAV/zipball/8339181df313361da4daee6cb1c7f144f67f8492", - "reference": "8339181df313361da4daee6cb1c7f144f67f8492", + "url": "https://api.github.com/repos/icewind1991/SearchDAV/zipball/3865288b6962de33086d4e02ec3584610c32b773", + "reference": "3865288b6962de33086d4e02ec3584610c32b773", "shasum": "" }, "require": { @@ -1518,9 +1518,9 @@ "description": "sabre/dav plugin to implement rfc5323 SEARCH", "support": { "issues": "https://github.com/icewind1991/SearchDAV/issues", - "source": "https://github.com/icewind1991/SearchDAV/tree/v3.1.0" + "source": "https://github.com/icewind1991/SearchDAV/tree/v3.2.0" }, - "time": "2023-11-14T22:32:04+00:00" + "time": "2024-11-08T15:54:16+00:00" }, { "name": "icewind/streams", diff --git a/composer/installed.json b/composer/installed.json index d02dd96a7..23350d087 100644 --- a/composer/installed.json +++ b/composer/installed.json @@ -1527,17 +1527,17 @@ }, { "name": "icewind/searchdav", - "version": "v3.1.0", - "version_normalized": "3.1.0.0", + "version": "v3.2.0", + "version_normalized": "3.2.0.0", "source": { "type": "git", "url": "https://github.com/icewind1991/SearchDAV.git", - "reference": "8339181df313361da4daee6cb1c7f144f67f8492" + "reference": "3865288b6962de33086d4e02ec3584610c32b773" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/icewind1991/SearchDAV/zipball/8339181df313361da4daee6cb1c7f144f67f8492", - "reference": "8339181df313361da4daee6cb1c7f144f67f8492", + "url": "https://api.github.com/repos/icewind1991/SearchDAV/zipball/3865288b6962de33086d4e02ec3584610c32b773", + "reference": "3865288b6962de33086d4e02ec3584610c32b773", "shasum": "" }, "require": { @@ -1551,7 +1551,7 @@ "phpunit/phpunit": "^8", "psalm/phar": "^4.3" }, - "time": "2023-11-14T22:32:04+00:00", + "time": "2024-11-08T15:54:16+00:00", "type": "library", "installation-source": "dist", "autoload": { @@ -1572,7 +1572,7 @@ "description": "sabre/dav plugin to implement rfc5323 SEARCH", "support": { "issues": "https://github.com/icewind1991/SearchDAV/issues", - "source": "https://github.com/icewind1991/SearchDAV/tree/v3.1.0" + "source": "https://github.com/icewind1991/SearchDAV/tree/v3.2.0" }, "install-path": "../icewind/searchdav" }, diff --git a/composer/installed.php b/composer/installed.php index 675130f26..0bde526fe 100644 --- a/composer/installed.php +++ b/composer/installed.php @@ -182,9 +182,9 @@ 'dev_requirement' => false, ), 'icewind/searchdav' => array( - 'pretty_version' => 'v3.1.0', - 'version' => '3.1.0.0', - 'reference' => '8339181df313361da4daee6cb1c7f144f67f8492', + 'pretty_version' => 'v3.2.0', + 'version' => '3.2.0.0', + 'reference' => '3865288b6962de33086d4e02ec3584610c32b773', 'type' => 'library', 'install_path' => __DIR__ . '/../icewind/searchdav', 'aliases' => array(), diff --git a/icewind/searchdav/src/Query/Scope.php b/icewind/searchdav/src/Query/Scope.php index faded1c32..76b41aeac 100644 --- a/icewind/searchdav/src/Query/Scope.php +++ b/icewind/searchdav/src/Query/Scope.php @@ -51,7 +51,7 @@ class Scope { * @param int|string $depth * @param string|null $path */ - public function __construct(string $href = '', $depth = 1, string $path = null) { + public function __construct(string $href = '', $depth = 1, ?string $path = null) { $this->href = $href; $this->depth = $depth; $this->path = $path; diff --git a/icewind/searchdav/src/XML/QueryDiscoverResponse.php b/icewind/searchdav/src/XML/QueryDiscoverResponse.php index c50dea984..0d8b6a271 100644 --- a/icewind/searchdav/src/XML/QueryDiscoverResponse.php +++ b/icewind/searchdav/src/XML/QueryDiscoverResponse.php @@ -38,7 +38,7 @@ class QueryDiscoverResponse extends Response { * @param BasicSearchSchema|null $schema * @param null|int|string $httpStatus */ - public function __construct($href, BasicSearchSchema $schema = null, $httpStatus = null) { + public function __construct($href, ?BasicSearchSchema $schema = null, $httpStatus = null) { if ($httpStatus !== null) { $httpStatus = (string)$httpStatus; }