From 8d910410c88b760c0a27d07ab9873d3054cc1e64 Mon Sep 17 00:00:00 2001 From: Arkadiusz Kondas Date: Mon, 4 Apr 2016 22:50:14 +0200 Subject: [PATCH] create php-cs-fixer start script --- tools/php-cs-fixer.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 tools/php-cs-fixer.sh diff --git a/tools/php-cs-fixer.sh b/tools/php-cs-fixer.sh new file mode 100755 index 0000000..dbf66e4 --- /dev/null +++ b/tools/php-cs-fixer.sh @@ -0,0 +1,6 @@ +#!/bin/bash +echo "Fixing src/ folder" +php-cs-fixer fix src/ --level=symfony + +echo "Fixing tests/ folder" +php-cs-fixer fix tests/ --level=symfony