Skip to content

Commit 156fb10

Browse files
Merge pull request #18 from codenamephp/dependabot/docker/docker/application/webdevops/php-dev-8.3
Bump webdevops/php-dev from 8.2 to 8.3 in /docker/application
2 parents 5ccf906 + 35efcb6 commit 156fb10

File tree

8 files changed

+107
-7
lines changed

8 files changed

+107
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
ci:
1818
uses: codenamephp/workflows.php/.github/workflows/ci.yml@1
1919
with:
20-
php-versions: '["8.1","8.2"]'
20+
php-versions: '["8.1","8.2","8.3"]'

.idea/deployer.crontab.iml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 91 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/phpunit.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker/application/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM webdevops/php-dev:8.2
1+
FROM webdevops/php-dev:8.3
22

33
COPY --from=composer:2 /usr/bin/composer /usr/local/bin/composer
44
COPY --from=phario/phive:0.15.2 /usr/local/bin/phive /usr/local/bin/phive

phive.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
-->
1818
<phive xmlns="https://phar.io/phive">
1919
<phar name="phpunit" version="^10.0" location="./tools/phpunit.phar" copy="true" installed="10.0.16"/>
20-
<phar name="psalm" version="^5.8" location="./tools/psalm" copy="true" installed="5.8.0"/>
20+
<phar name="psalm" version="^5.8" location="./tools/psalm" copy="true" installed="5.20.0"/>
2121
<phar name="composer-unused" version="^0.8.6" location="./tools/composer-unused" copy="true" installed="0.8.7"/>
2222
<phar name="composer-require-checker" version="^4.5" location="./tools/composer-require-checker" copy="true" installed="4.5.0"/>
2323
<phar name="infection" version="^0.26" location="./tools/infection" copy="true" installed="0.26.19"/>

src/Task/AbstractCrontabCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ public function __construct(
4747
*/
4848
final public function getOptionsWithUser() : array {
4949
$options = $this instanceof HasOptionsInterface ? $this->getOptions() : [];
50-
!$this->user ?: $options[] = "-u $this->user";
50+
(string) $this->user !== '' && $options[] = "-u $this->user";
5151
return $options;
5252
}
5353

5454
final public function __invoke() : void {
5555
$output = $this->commandRunner->run($this->crontabCommandFactory->build($this->getOptionsWithUser()));
5656
!$this instanceof HasOutputInteface ?: $this->writeln->writeln(PHP_EOL . $output);
5757
}
58-
}
58+
}

tools/psalm

538 KB
Binary file not shown.

0 commit comments

Comments
 (0)