Tom Sowerby

Results 3 issues of Tom Sowerby

The block above checks return type and continues IF THERE IS A PROBLEM. If it's all fine then we end up checking the docblock against the return, which fails, and...

Current behaviour encourages /** * @param string $thing */ function doStuff(?string $thing) { ... } I think that it should be: /** * @param string|null $thing */ function doStuff(?string $thing)...

Has anybody got this working with dev tools? https://github.com/zalmoxisus/redux-devtools-extension There are a few workarounds for redux-offline: https://github.com/zalmoxisus/remote-redux-devtools/issues/87 But I'm getting errors back whenever I have any dev tool enhancer involved...

enhancement