respect-validation/docs/rules/Graph.md
Danilo Correa fc433ad449
Apply contribution guidelines to "Graph" rule
After writing the integration tests of the "Graph" rule we noticed that
it is generating extra double-quotes for the "{{additionalChars}}"
template placeholder.

This commit will also remove those extra double-quotes.

Co-authored-by: Henrique Moody <henriquemoody@gmail.com>
2019-02-10 12:25:11 +01:00

23 lines
366 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
```
## Changelog
Version | Description
--------|-------------
0.5.0 | Created
***
See also:
- [Printable](Printable.md)
- [Punct](Punct.md)