2015-06-20 11:43:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser;
|
|
|
|
|
2015-09-16 15:00:44 +02:00
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
2015-06-20 11:43:16 +02:00
|
|
|
|
|
|
|
function canonicalize($str) {
|
2016-04-05 03:17:30 +02:00
|
|
|
// normalize EOL style
|
|
|
|
$str = str_replace("\r\n", "\n", $str);
|
2015-06-20 11:43:16 +02:00
|
|
|
|
2016-04-05 03:17:30 +02:00
|
|
|
// trim newlines at end
|
|
|
|
$str = rtrim($str, "\n");
|
2015-06-20 11:43:16 +02:00
|
|
|
|
2016-04-05 03:17:30 +02:00
|
|
|
// remove trailing whitespace on all lines
|
|
|
|
$lines = explode("\n", $str);
|
|
|
|
$lines = array_map(function($line) {
|
|
|
|
return rtrim($line, " \t");
|
|
|
|
}, $lines);
|
|
|
|
return implode("\n", $lines);
|
2015-06-20 11:43:16 +02:00
|
|
|
}
|
2017-01-19 22:23:19 +01:00
|
|
|
|
|
|
|
function filesInDir($directory, $fileExtension) {
|
|
|
|
$directory = realpath($directory);
|
|
|
|
$it = new \RecursiveDirectoryIterator($directory);
|
|
|
|
$it = new \RecursiveIteratorIterator($it, \RecursiveIteratorIterator::LEAVES_ONLY);
|
|
|
|
$it = new \RegexIterator($it, '(\.' . preg_quote($fileExtension) . '$)');
|
|
|
|
foreach ($it as $file) {
|
|
|
|
$fileName = $file->getPathname();
|
|
|
|
yield $fileName => file_get_contents($fileName);
|
|
|
|
}
|
2018-01-10 18:04:06 +01:00
|
|
|
}
|