#!/bin/sh

vendor/bin/phpcbf "$@"
status=$?

if [ $status -eq 1 ]; then
    exit 0
else
    exit "$status"
fi
