Skip to content

add type hint for URL getter and setter #9

add type hint for URL getter and setter

add type hint for URL getter and setter #9

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
php: ['8.0', '8.1']
steps:
- uses: actions/checkout@v3
- name: setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Run PHP tests
run: php${{ matrix.php }} ./vendor/bin/phpunit