Skip to content

Commit 68be176

Browse files
committed
updated for php-tools 1.5.8
1 parent c9b1c8b commit 68be176

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# 2.x branch
22
## 2.10 branch
33
### 2.10.1
4-
* stable version.
4+
* stable version;
5+
* updated for `php-tools` 1.5.8.
56

67
### 2.10.0-beta1
78
* now allows to configure and customize via bootstrap the executable commands to

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"require": {
1414
"php": ">=7.2",
1515
"cakephp/cakephp": "^4.0",
16-
"mirko-pagliai/php-tools": "^1.5.5"
16+
"mirko-pagliai/php-tools": "^1.5.8"
1717
},
1818
"require-dev": {
1919
"cakephp/cakephp-codesniffer": "^4.4",

src/Driver/Driver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected function _exec(string $command): Process
9696
*/
9797
protected function _getExecutable(string $type): string
9898
{
99-
Exceptionist::inArray([$type, ['export', 'import']]);
99+
Exceptionist::inArray($type, ['export', 'import']);
100100
$driver = strtolower($this->getDriverName());
101101
$replacements = [
102102
'{{BINARY}}' => escapeshellarg($this->getBinary(DATABASE_BACKUP_EXECUTABLES[$driver][$type])),

0 commit comments

Comments
 (0)