Larry Weya

Results 2 issues of Larry Weya

In my case, my class overloads __isset and has a method, which when referenced as a property uses __get to resolve. I believe this covers any cases where a class...

According to the docs, filters are created as callable functions ``` php $dust->filters['striptags'] = function ($value) { //not a string, nothing to do if (!is_string($value)) { return $value; } //otherwise...