Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ '7.3', '7.4', '8.0', '8.1', '8.2' ]
php: [ '8.2', '8.3', '8.4', '8.5' ]

name: PHP ${{ matrix.php }}

Expand All @@ -40,4 +40,4 @@ jobs:
run: composer install --prefer-dist --no-interaction --no-progress

- name: Run test suite
run: ./vendor/bin/pest
run: ./vendor/bin/pest
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
language: php

php:
- 7.2
- 7.3
- 7.4
- 8.2
- 8.3
- 8.4
- 8.5

before_script:
composer install

script:
./vendor/bin/phpunit tests --testdox
./vendor/bin/phpunit tests --testdox
7 changes: 4 additions & 3 deletions MTOMSoapClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,14 @@ protected function process(?string $response): ?string
* @param string $location
* @param string $action
* @param int $version
* @param int $one_way
* @param bool $one_way
* @param string|null $uriParserClass
* @return string|null
* @throws Exception
*/
public function __doRequest($request, $location, $action, $version, $one_way = 0): ?string
public function __doRequest(string $request, string $location, string $action, int $version, bool $one_way = false, ?string $uriParserClass = null): ?string
{
$response = parent::__doRequest($request, $location, $action, $version, $one_way);
$response = parent::__doRequest($request, $location, $action, $version, $one_way, $uriParserClass);

return $this->process($response);
}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.3||^8.0",
"php": "^8.2",
"ext-soap": "*",
"ext-dom": "*"
},
Expand Down