Jáchym Toušek
Jáchym Toušek
It's common practice to have some code in .htaccess that prevents autoloading of all files with a leading dot (like .htaccess, .gitignore, .gitattributes, .travis.yml and so on). Because of that...
Personally I don't like the configuration via session thing. Instead I want to have my own logic in my app that would check privileges and such and then call the...
I'd like to use the PriorityQueue but in my case the values I need to use for ordering are dates and I need the oldest one first. This means I...
Lately I'm getting this error when using amphp/parallel. When I check the previous exception it is ``` Amp\Parallel\Context\ContextException: Starting the process timed out. ``` Any idea what could be wrong...
I'm trying out this package. At the moment my biggest issue with it is the (lack of) debugging support. When a task throws an exception, the original doesn't get it....
sentry-php allows integrations option to be either a custom list of integrations or a callable what can filter the existing integrations: https://github.com/getsentry/sentry-php/blob/ea704bbe145657a507d73cd8bf6cc017d269fffa/src/Options.php#L754 I'd like to use the latter but it...
I noticed that some methods of `Collection` return `false` on failure. Specifically `first()`, `last()`, `current()`, `next()` and `indexOf()`. It would be better in my opinion to return `null` instead. Since...
Code: ```php
The `in` operator [documentation](https://github.com/microsoft/TypeScript-Handbook/blob/master/pages/Advanced%20Types.md#using-the-in-operator) says the following: > the "true" branch narrows to types which have an **optional or required** property n, and the "false" branch narrows to types which...