respect-validation/docs/rules/Printable.md
Henrique Moody 9c0f8dcfcc
Rename rule "Cntrl" to "Control"
This commit will rename the rule by removing the abbreviation to make it
a bit easier to understand what it does and much easier to find.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-05-11 19:35:14 +02:00

28 lines
365 B
Markdown

# Printable
- `Printable()`
- `Printable(string ...$additionalChars)`
Similar to `Graph` but accepts whitespace.
```php
v::printable()->validate('LMKA0$% _123'); // true
```
## Categorization
- Strings
## Changelog
Version | Description
--------|-------------
0.5.0 | Created
***
See also:
- [Control](Control.md)
- [Graph](Graph.md)
- [Punct](Punct.md)