This diff removes the linter bash script to integrate a PHP equivalent
one into arcanist. Calling the bash script through arcanist was time
consuming (see D2705 and D2804).
By not calling any external program, this runs much faster than the
previous version.
This PHP version is equivalent to the bash one, with one minor
improvement: it can detect multiple occurrences of locale dependent
functions on a single line.
This case occurs once in the codebase in the src/test/getarg_tests.cpp
file where boost::is_space was masked by boost::split on the same
line. An exception as been added for this case.
Tested arc lint --everything with this single linter activated, it
took less than a second to run on my machine.