php-traits icon indicating copy to clipboard operation
php-traits copied to clipboard

A collection of (more or less) useful traits for PHP7.2+

Results 1 php-traits issues
Sort by recently updated
recently updated
newest added

https://wiki.php.net/rfc/consistent_callables ``` function foo(callable $callable){ // ... } foo('trim'); // -> Argument 1 passed to foo() must be callable, string given foo([$obj, 'method']); // -> Argument 1 passed to foo()...