Skip to content

Always used passed $value when checking if token is valid #31

Always used passed $value when checking if token is valid

Always used passed $value when checking if token is valid #31

Workflow file for this run

name: Analyse
on:
push:
paths:
- '**.php'
- 'phpstan.neon.dist'
jobs:
analyse:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
php: [ 8.2, 8.3, 8.4 ]
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, zip
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: Run analysis
run: php vendor/bin/phpstan analyse --verbose --ansi