Skip to content

Commit b412d8f

Browse files
Merge branch 'main' into 6.0
2 parents c1ce5e8 + 0ab5ab9 commit b412d8f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest]
15-
php: ['8.0', '8.1', '8.2', '8.3']
15+
php: ['8.0', '8.1', '8.2', '8.3', '8.4']
1616
steps:
1717
- uses: actions/checkout@master
1818

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"ext-dom": "*",
4949
"ext-json": "*",
5050
"ext-spl": "*",
51-
"sebastian/environment": "^3.0|^4.0|^5.0|^6.0",
51+
"sebastian/environment": "^3.0|^4.0|^5.0|^6.0|^7.0|^8.0",
5252
"sebastianfeldmann/cli": "^3.4",
5353
"symfony/process": "^3.0|^4.0|^5.0|^6.0|^7.0"
5454
},

src/Backup/Cli.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ abstract class Cli
4848
* @param \SebastianFeldmann\Cli\Command\Runner $runner
4949
* @param int|null $time
5050
*/
51-
public function __construct(Runner $runner = null, ?int $time = null)
51+
public function __construct(?Runner $runner = null, ?int $time = null)
5252
{
5353
$this->runner = $runner ? : new Runner\Simple(new Symfony());
5454
$this->time = $time ? : time();

src/Backup/Compressor/Abstraction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ abstract class Abstraction extends Cli implements Compressible
4242
* @param \SebastianFeldmann\Cli\Command\Runner $runner
4343
* @throws \phpbu\App\Exception
4444
*/
45-
public function __construct($path, $pathToCommand = '', Runner $runner = null)
45+
public function __construct($path, $pathToCommand = '', ?Runner $runner = null)
4646
{
4747
if (empty($path)) {
4848
throw new Exception('no path to compress set');

src/Backup/Target/Compression/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Factory
2626
'bzip2' => 'Bzip2',
2727
'xz' => 'Xz',
2828
'zip' => 'Zip',
29-
'zstd' => 'Zstd'
29+
'zstd' => 'Zstd'
3030
];
3131

3232
/**

0 commit comments

Comments
 (0)