Skip to content

added unescapeString method to unescape data in raw view #67

added unescapeString method to unescape data in raw view

added unescapeString method to unescape data in raw view #67

Workflow file for this run

# run static code analysis with PHP CodeSniffer
name: PHP-CodeSniffer
on:
push:
branches:
- main
jobs:
phpcs:
name: PHP CodeSniffer
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
# setup PHP
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
# install php dependencies
- name: Install dependencies
run: composer install --no-interaction --no-progress
# check code with code sniffer
- name: Run PHP CodeSniffer
run: vendor/bin/phpcs