respect-validation/docs/rules/Space.md

26 lines
324 B
Markdown
Raw Normal View History

2015-01-30 09:40:06 +01:00
# Space
- `Space()`
- `Space(string ...$additionalChars)`
2015-01-30 09:40:06 +01:00
Validates whether the input contains only whitespaces characters.
2015-01-30 09:40:06 +01:00
```php
v::space()->validate(' '); // 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:
- [Control](Control.md)