respect-validation/docs/rules/Graph.md
Henrique Moody 10df3211f5
Add "Categorization" section to rule documentations
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-05-11 19:16:21 +02:00

28 lines
396 B
Markdown

# Graph
- `Graph()`
- `Graph(string ...$additionalChars)`
Validates if all characters in the input are printable and actually creates
visible output (no white space).
```php
v::graph()->validate('LKM@#$%4;'); // true
```
## Categorization
- Strings
## Changelog
Version | Description
--------|-------------
0.5.0 | Created
***
See also:
- [Printable](Printable.md)
- [Punct](Punct.md)