diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aeda443..af0741f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,11 +13,8 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1, 8.2] + php: [8.1, 8.2, 8.3] laravel: [9.*, 10.*] - exclude: - - php: 8.0 - laravel: 10.* name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 8390107..0eb6e48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- Support for PHP 8.3 + +## Removed +- Support for PHP 8.0 ## [3.6.0] - 2023-03-07 ### Added diff --git a/src/GateCache.php b/src/GateCache.php index 8ba52cf..74240e0 100644 --- a/src/GateCache.php +++ b/src/GateCache.php @@ -63,8 +63,8 @@ public function forUser($user) /** * Generate a unique hash for the request. * - * @param $ability - * @param $arguments + * @param $ability + * @param $arguments * @return string */ protected function getHash($ability, $arguments)