Felix Siebeneicker

Results 65 comments of Felix Siebeneicker

Hey :wave: Your screenshot is a bit misleading. As the error message is not the correct one that you actually want to show. You cannot create an instance of an...

That is not entirely true. When you are using different types for the `return` statement, you can see it does the type checking somehow in the background nonetheless. However, it...

It seems to just report the one that is last.

Just a question here, when you talk about sorting. Are there multiple different approaches to sorting imports? I saw "length of line" above, other methods could be "alphabetically". For e.g....

Have you tried running CS PHP Fixer on save with config `'ordered_imports' => ['sort_algorithm' => 'alpha'],`? I think that could be a simple solution as well.

From what I can see in your log file, this could be an issue with the StreamLabs plugin you are using. Something in that JavaScript file fails with an unhandled...

Primarily I wanted this for extensive testing of features, but now I can hook into the Steam Delver assets and that is fine as well.

I could imagine that passing a `TagCollection` to those methods would not be *easy*?! How about just passing an array of strings instead, e.g. `tags.remove(["foo", "bar"])`.

That mock example makes sense. I thought of a non-cached use-case where you would just test for some tags, and not creating a collection first etc.