respect-validation/docs/rules/ResourceType.md
Henrique Moody 10df3211f5
Add "Categorization" section to rule documentations
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-05-11 19:16:21 +02:00

37 lines
660 B
Markdown

# ResourceType
- `ResourceType()`
Validates whether the input is a [resource](http://php.net/types.resource).
```php
v::resourceType()->validate(fopen('/path/to/file.txt', 'w')); // true
```
## Categorization
- Types
## Changelog
Version | Description
--------|-------------
1.0.0 | Created
***
See also:
- [ArrayType](ArrayType.md)
- [BoolType](BoolType.md)
- [BoolVal](BoolVal.md)
- [CallableType](CallableType.md)
- [FloatType](FloatType.md)
- [IntType](IntType.md)
- [NullType](NullType.md)
- [Number](Number.md)
- [ObjectType](ObjectType.md)
- [PhpLabel](PhpLabel.md)
- [StringType](StringType.md)
- [StringVal](StringVal.md)
- [Type](Type.md)