respect-validation/docs/rules/Writable.md
2018-08-23 02:12:44 +02:00

30 lines
482 B
Markdown

# Writable
- `Writable()`
Validates if the given input is writable file.
```php
v::writable()->validate('file.txt'); // true
```
## Changelog
Version | Description
--------|-------------
0.5.0 | Created
***
See also:
- [Directory](Directory.md)
- [Executable](Executable.md)
- [Exists](Exists.md)
- [Extension](Extension.md)
- [File](File.md)
- [Mimetype](Mimetype.md)
- [Readable](Readable.md)
- [Size](Size.md)
- [SymbolicLink](SymbolicLink.md)
- [Uploaded](Uploaded.md)