respect-validation/docs/rules/Graph.md

28 lines
396 B
Markdown
Raw Normal View History

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