Simon Podlipsky
Simon Podlipsky
@cleentfaar Hi man, just wondering whether this package is still maintained. Wanted to create PR but I checked open ones first and it looks like this project is dead. Thanks...
No, it's a bug. snakecase should convert all strings to snakecase not just some.
Yes, much awesome!
@clue thanks for input. I'll look into how to test this. Also note this is only partial implementation (for happy path) as both psalm and phpstan do not support default...
I'll wait for default promise value support in SA since it's fairly useless without it
Thank you for update and pushing it forward!
Personally I think `->isInteractive()` is misused here. I'd change it to ``` before asking question based on warning check that input is interactive if not, exit with non-zero code ```
Yup definitely CD should fail if migrations were not execute. I managed to deploy while migrations were skipped because of the exit code 0. The deployed version did not work...
We have deployed to production and migrations were not executed because of this design today. Which reminded me this issue. @goetas WDYT about it? Should we maintain a fork to...
I've run this through typescript ```ts (a: (() => number)|string) => { if (typeof a === 'string') { return; } const x:never = a; } ``` and it interprets `(Closure():...