#!/usr/bin/env bash

set -euo pipefail

find src -name '*.php' -print0 |
    xargs -0 -n 1 php -l
