respect-validation/docs/rules/ScalarVal.md

29 lines
402 B
Markdown
Raw Normal View History

2015-10-07 17:35:25 +02:00
# ScalarVal
- `ScalarVal()`
2015-10-07 17:35:25 +02:00
Validates whether the input is a scalar value or not.
2015-10-07 17:35:25 +02:00
```php
v::scalarVal()->validate([]); // false
v::scalarVal()->validate(135.0); // true
2015-10-07 17:35:25 +02:00
```
## Categorization
- Types
## Changelog
Version | Description
--------|-------------
1.0.0 | Created
2015-10-07 17:35:25 +02:00
***
See also:
- [ArrayVal](ArrayVal.md)
- [NumericVal](NumericVal.md)
- [StringType](StringType.md)
- [Type](Type.md)