Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ph-fritsche/php-varinfo


https://github.com/ph-fritsche/php-varinfo

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

# Varinfo

DRY helper for describing variables

```php
if (!\is_numeric($foo)) {
throw new InvalidArgumentException(\sprintf(
'Expected numeric - %s given',
new PhF\Varinfo\Varinfo($foo)
));
}
```