diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ad8d77..6ad7713 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.4', '8.0', '8.4'] + php-versions: ['7.4', '8.0'] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2cd12eb..75f0f34 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - php-versions: ['7.4', '8.0', '8.4'] + php-versions: ['7.4', '8.0'] name: php${{ matrix.php-versions }} lint steps: - name: Checkout diff --git a/src/DAV/QueryParser.php b/src/DAV/QueryParser.php index 915184e..440b644 100644 --- a/src/DAV/QueryParser.php +++ b/src/DAV/QueryParser.php @@ -76,7 +76,6 @@ class QueryParser extends Service { '{DAV:}contains' => Operator::class, '{DAV:}not' => Operator::class, '{DAV:}is-collection' => Operator::class, - '{DAV:}is-defined' => Operator::class, '{DAV:}limit' => Limit::class, ]; } diff --git a/src/Query/Scope.php b/src/Query/Scope.php index 76b41ae..faded1c 100644 --- a/src/Query/Scope.php +++ b/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/src/XML/QueryDiscoverResponse.php b/src/XML/QueryDiscoverResponse.php index 0d8b6a2..c50dea9 100644 --- a/src/XML/QueryDiscoverResponse.php +++ b/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; }