Jerry Martinez

Results 4 issues of Jerry Martinez

## AbstractSet::add() is slow for large collections. `AbstractSet::add()` internally invokes `AbstractCollection::add()` which forwards to `AbstractSet::offsetSet()`. This flow causes `AbstractCollection::contains()` to be invoked twice which, for extremely large collections, can significantly...

enhancement

Thanks for this project. I have been using it for several months to prettify a configuration array that is modified by a UI and written to a file. It would...

For UAs not supporting SVG as background images, there is a nice fallback which CSSO restructuring destroys. ```css .selector { background-image: url( 'image.png' ); background-image: url( 'image.svg' ), none; }...

I came across this extension after researching degraded file access performance of one of my projects. It turns out, it was impacted by the tremendous performance cost of open_basedir. Is...