- 🇬🇧United Kingdom jonathan1055
Just for clarity, the only real code change is the pattern match in the single line
preg_grep("{.*\.js$}",$this->codebase->getModifiedFiles());
which becomes
preg_grep("{.*\.(js|yml)$}",$this->codebase->getModifiedFiles());
The other changes are comments and the variable name change.