Bastian Konetzny
Bastian Konetzny
We commit our generated HTML files to git, but creating a diff for them is nearly impossible for some generated HTML, especially long `` lines like required by section. I...
I enabled caching for my tests by setting the `cacheDir` config property. Now tests run much faster, but changes in files are not picked up? I expected the cache to...
`stream_context_set_default` in `HttpAdapter::head()` doesn't reset http method 'HEAD', once it is set. This leaves later calls to file_get_contents() without a context with this method. In our case, this confuses other...
Fixes #3 by not un-escaping already escaped slashes.
The protected method `buildUrl` does two things: 1. Replace already encoded slashes (`%2F`) with `/`. 2. Replace unencoded whitespace (` `) with `%20`. While step two is correct to "fix"...