You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix fatal error when headers is null (#128)
Headers defaults to "null" if empty, and "fixHeaders" can return null
too. Then we should allow "null" for the setHeaders function.
Exception2 (#127)
An attempt to fix some issues that are not handled gracefully.
It seems as though on occasion there is an issue within the exception
handling. This tries to solve that.
---------
Co-authored-by: Ash <1744544+ashgibson@users.noreply.github.com>
Co-authored-by: Eli Wood <ewood@PC26VM7WKL.local>
Split classes in their own file (#124)
Some classes were stored in the same file, not following PSR4
conventions.
This prevented tools such as PHPStan to easily discover these symbols &
read these classes.
Moving them to different files does not cause a breaking change as the
namespace does not change.