diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index 5e83562..17246f7 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: operating-system: [ ubuntu-latest ] - php-version: [ '8.1', '8.2' ] + php-version: [ '8.1', '8.2', '8.3', '8.4', '8.5' ] name: PHP ${{ matrix.php-version }} performance test on ${{ matrix.operating-system }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 462bf61..a8cd097 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,6 +10,8 @@ on: types: - opened - edited + - synchronize + - reopened branches: - master @@ -23,7 +25,7 @@ jobs: strategy: matrix: operating-system: [ ubuntu-latest ] - php-version: [ '8.1', '8.2' ] + php-version: [ '8.1', '8.2', '8.3', '8.4', '8.5' ] name: PHP ${{ matrix.php-version }} tests on ${{ matrix.operating-system }} diff --git a/src/Core/Attributes/Base/BaseAttribute.php b/src/Core/Attributes/Base/BaseAttribute.php index 4f7d1d6..bae4f8c 100644 --- a/src/Core/Attributes/Base/BaseAttribute.php +++ b/src/Core/Attributes/Base/BaseAttribute.php @@ -2,14 +2,11 @@ namespace Okapi\Aop\Core\Attributes\Base; -use Attribute; - /** * # Base attribute * * Base attribute for all AOP attributes. */ -#[Attribute] abstract class BaseAttribute { }