From 7c977e451c0af0cc8de233871966fc21c46a42ac Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 9 Dec 2020 13:58:31 +0100 Subject: [PATCH] Fix lint --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index da908ccf..8c26a72d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -30,7 +30,7 @@ jobs: - name: "Lint PHP files on 5.3" if: "matrix.php-version == '5.3'" - run: "find src/ -type f -name '*.php' -not -name '*Trait.php' -print0 | xargs -0 -L1 -P4 -- php -l -f" + run: "find src/ -type f -name '*.php' -not -name '*Trait.php' -not -name 'FormattableHandlerInterface.php' -not -name 'ProcessableHandlerInterface.php' -print0 | xargs -0 -L1 -P4 -- php -l -f" - name: "Lint PHP files" if: "matrix.php-version != '5.3'"