aboutsummaryrefslogtreecommitdiff
path: root/app/class/Flywheel
AgeCommit message (Collapse)Author
2020-04-28tests: phpstan adjustments + 3 phpstan fixesn-peugnet
- force exclude templates and vendor directories @vincent-peugnet: this should stop the phpstan-vscode extension to report errors in templates. - fix errors that were only reported on github because of php 7.3: - Missing @throws JsonException annotation - Regex pattern is invalid: Compilation failed: invalid range in character class at offset 16 in pattern: %(src|href)="([\w-_]+(\/([\w-_])+)*\.[a-z0-9]{1,5})"% the regex expected a range beacause the `-` char was placed in between two others. + `\w` includes `_` - plus one last easy error: PHPDoc tag @param references unknown parameter: $authorcompare
2020-04-25fix: most of PHPStan errorsn-peugnet
2020-04-17apply psr 12 part 2vincent-peugnet
2019-11-05refactor: switch to psr-4 autoloadingn-peugnet