Rudolph Gottesheim

Results 37 comments of Rudolph Gottesheim
trafficstars

For what it's worth, Safari also renders date time ranges in German differently from all other engines: It uses a different kind of dash/hyphen and different kinds of spaces around...

Thank you for your comprehensive response. Feel free to close this or leave it open (for now) as a foundation for further discussion.

Here's a short example of what I'm trying to do: ```php class MyForm extends Zend\Form\Form { public function init() { parent::init(); $this->add(['type' => MyFieldset::class, 'options' => ['foo' => 'My Option']]);...

Thanks, I already changed it to be immutable.

> But I don't understand your conditional return type, looks wrong to me. This signature truthfully mirrors the implementation of your function: Yes, I know. As I wrote in my...

Somewhere between pre-1.0 and now `@phpstan-ignore-next-line` stopped working for these cases: https://phpstan.org/r/e1b07d56-dfdc-4f31-b2fe-3ca21b0a94f3

For me, the test is always "Can I treat this thing like X?". In this case: > Can I treat `callable(): string` like `callable(): void`? The answer is clearly yes.