Skip to content

Commit 1b9d9cf

Browse files
authored
Merge pull request #2551 from tarlepp/chore(ci)/use-php-83-in-actions
Chore(CI) - Use PHP 8.3 in GitHub actions
2 parents e9189c5 + 5026e96 commit 1b9d9cf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+4
-104
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup PHP, with composer and extensions
3333
uses: shivammathur/setup-php@81cd5ae0920b34eef300e1775313071038a53429 # v2.27.0
3434
with:
35-
php-version: '8.2'
35+
php-version: '8.3'
3636
tools: composer:v2
3737

3838
- name: Get composer cache directory
@@ -77,7 +77,7 @@ jobs:
7777
- name: Setup PHP, with composer and extensions
7878
uses: shivammathur/setup-php@81cd5ae0920b34eef300e1775313071038a53429 # v2.27.0
7979
with:
80-
php-version: '8.2'
80+
php-version: '8.3'
8181
tools: composer:v2
8282

8383
- name: Get composer cache directory
@@ -128,7 +128,7 @@ jobs:
128128
- name: Setup PHP, with composer and extensions
129129
uses: shivammathur/setup-php@81cd5ae0920b34eef300e1775313071038a53429 # v2.27.0
130130
with:
131-
php-version: '8.2'
131+
php-version: '8.3'
132132
tools: composer:v2
133133

134134
- name: Get composer cache directory
@@ -216,7 +216,7 @@ jobs:
216216
- name: Setup PHP, with composer and extensions
217217
uses: shivammathur/setup-php@81cd5ae0920b34eef300e1775313071038a53429 # v2.27.0
218218
with:
219-
php-version: '8.2'
219+
php-version: '8.3'
220220
extensions: pdo_mysql, mysql
221221
coverage: xdebug
222222
tools: composer:v2

src/Command/ApiKey/ChangeTokenCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use App\Command\Traits\SymfonyStyleTrait;
1212
use App\Entity\ApiKey;
1313
use App\Resource\ApiKeyResource;
14-
use Override;
1514
use Symfony\Component\Console\Attribute\AsCommand;
1615
use Symfony\Component\Console\Command\Command;
1716
use Symfony\Component\Console\Input\InputInterface;
@@ -46,7 +45,6 @@ public function __construct(
4645
*
4746
* @throws Throwable
4847
*/
49-
#[Override]
5048
protected function execute(InputInterface $input, OutputInterface $output): int
5149
{
5250
$io = $this->getSymfonyStyle($input, $output);

src/Command/ApiKey/CreateApiKeyCommand.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
use App\Resource\UserGroupResource;
1919
use App\Security\RolesService;
2020
use Matthias\SymfonyConsoleForm\Console\Helper\FormHelper;
21-
use Override;
2221
use Symfony\Component\Console\Attribute\AsCommand;
2322
use Symfony\Component\Console\Command\Command;
2423
use Symfony\Component\Console\Input\InputInterface;
@@ -68,7 +67,6 @@ public function getRolesService(): RolesService
6867
return $this->rolesService;
6968
}
7069

71-
#[Override]
7270
protected function configure(): void
7371
{
7472
parent::configure();
@@ -81,7 +79,6 @@ protected function configure(): void
8179
*
8280
* @throws Throwable
8381
*/
84-
#[Override]
8582
protected function execute(InputInterface $input, OutputInterface $output): int
8683
{
8784
$io = $this->getSymfonyStyle($input, $output);

src/Command/ApiKey/EditApiKeyCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use App\Form\Type\Console\ApiKeyType;
1515
use App\Resource\ApiKeyResource;
1616
use Matthias\SymfonyConsoleForm\Console\Helper\FormHelper;
17-
use Override;
1817
use Symfony\Component\Console\Attribute\AsCommand;
1918
use Symfony\Component\Console\Command\Command;
2019
use Symfony\Component\Console\Input\InputInterface;
@@ -49,7 +48,6 @@ public function __construct(
4948
*
5049
* @throws Throwable
5150
*/
52-
#[Override]
5351
protected function execute(InputInterface $input, OutputInterface $output): int
5452
{
5553
$io = $this->getSymfonyStyle($input, $output);

src/Command/ApiKey/ListApiKeysCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
use App\Resource\ApiKeyResource;
1414
use App\Security\RolesService;
1515
use Closure;
16-
use Override;
1716
use Symfony\Component\Console\Attribute\AsCommand;
1817
use Symfony\Component\Console\Command\Command;
1918
use Symfony\Component\Console\Input\InputInterface;
@@ -50,7 +49,6 @@ public function __construct(
5049
*
5150
* @throws Throwable
5251
*/
53-
#[Override]
5452
protected function execute(InputInterface $input, OutputInterface $output): int
5553
{
5654
$io = new SymfonyStyle($input, $output);

src/Command/ApiKey/RemoveApiKeyCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use App\Command\Traits\SymfonyStyleTrait;
1212
use App\Entity\ApiKey;
1313
use App\Resource\ApiKeyResource;
14-
use Override;
1514
use Symfony\Component\Console\Attribute\AsCommand;
1615
use Symfony\Component\Console\Command\Command;
1716
use Symfony\Component\Console\Input\InputInterface;
@@ -46,7 +45,6 @@ public function __construct(
4645
*
4746
* @throws Throwable
4847
*/
49-
#[Override]
5048
protected function execute(InputInterface $input, OutputInterface $output): int
5149
{
5250
$io = $this->getSymfonyStyle($input, $output);

src/Command/User/CreateRolesCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
use App\Repository\RoleRepository;
1414
use App\Security\RolesService;
1515
use Doctrine\ORM\EntityManagerInterface;
16-
use Override;
1716
use Symfony\Component\Console\Attribute\AsCommand;
1817
use Symfony\Component\Console\Command\Command;
1918
use Symfony\Component\Console\Input\InputInterface;
@@ -52,7 +51,6 @@ public function __construct(
5251
*
5352
* @throws Throwable
5453
*/
55-
#[Override]
5654
protected function execute(InputInterface $input, OutputInterface $output): int
5755
{
5856
$io = $this->getSymfonyStyle($input, $output);

src/Command/User/CreateUserCommand.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
use App\Resource\UserResource;
1919
use App\Security\RolesService;
2020
use Matthias\SymfonyConsoleForm\Console\Helper\FormHelper;
21-
use Override;
2221
use Symfony\Component\Console\Attribute\AsCommand;
2322
use Symfony\Component\Console\Command\Command;
2423
use Symfony\Component\Console\Input\InputInterface;
@@ -90,7 +89,6 @@ public function getRolesService(): RolesService
9089
return $this->rolesService;
9190
}
9291

93-
#[Override]
9492
protected function configure(): void
9593
{
9694
parent::configure();
@@ -103,7 +101,6 @@ protected function configure(): void
103101
*
104102
* @throws Throwable
105103
*/
106-
#[Override]
107104
protected function execute(InputInterface $input, OutputInterface $output): int
108105
{
109106
$io = $this->getSymfonyStyle($input, $output);

src/Command/User/CreateUserGroupCommand.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
use App\Repository\RoleRepository;
1717
use App\Resource\UserGroupResource;
1818
use Matthias\SymfonyConsoleForm\Console\Helper\FormHelper;
19-
use Override;
2019
use Symfony\Component\Console\Attribute\AsCommand;
2120
use Symfony\Component\Console\Command\Command;
2221
use Symfony\Component\Console\Input\ArrayInput;
@@ -63,7 +62,6 @@ public function __construct(
6362
parent::__construct();
6463
}
6564

66-
#[Override]
6765
protected function configure(): void
6866
{
6967
parent::configure();
@@ -76,7 +74,6 @@ protected function configure(): void
7674
*
7775
* @throws Throwable
7876
*/
79-
#[Override]
8077
protected function execute(InputInterface $input, OutputInterface $output): int
8178
{
8279
$io = $this->getSymfonyStyle($input, $output);

src/Command/User/EditUserCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use App\Form\Type\Console\UserType;
1515
use App\Resource\UserResource;
1616
use Matthias\SymfonyConsoleForm\Console\Helper\FormHelper;
17-
use Override;
1817
use Symfony\Component\Console\Attribute\AsCommand;
1918
use Symfony\Component\Console\Command\Command;
2019
use Symfony\Component\Console\Input\InputInterface;
@@ -49,7 +48,6 @@ public function __construct(
4948
*
5049
* @throws Throwable
5150
*/
52-
#[Override]
5351
protected function execute(InputInterface $input, OutputInterface $output): int
5452
{
5553
$io = $this->getSymfonyStyle($input, $output);

0 commit comments

Comments
 (0)