linting fixes

This commit is contained in:
Dennis Eichhorn 2023-09-21 00:25:07 +00:00
parent 867d671126
commit c301f22312
2 changed files with 2 additions and 2 deletions

View File

@ -165,4 +165,4 @@ $router->route(
## Notes
* 2-character routes on the first level are discouraged because they may conflict with ISO 639-1 codes (e.g. /hr/staff/list)
* 2-character routes on the first level are discouraged because they may conflict with ISO 639-1 codes (e.g. /hr/staff/list)

View File

@ -200,4 +200,4 @@ Enums can be validated by name/key and by value.
```php
MyEnum::isValidName('ENUM_NAME');
MyEnum::isValidValue(123);
```
```