Michal

- Total activity 32
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 9
-
-
-
-
-
Michal created a post, AnsweredHow to get changes between two git commits and upload them?
In PhpStorm, when I have uncommitted git changes in my project I can see them in the commit tab like this:I can right click on the ‘Changes’ title, select ‘Deployment’ and upload all the changes to... -
-
-
Michal created a post, Structural replace - how to rename method call?
I'm trying to replace all occurrences of a method call (which is deprecated) with a another method. Current usages look like this:$product = $this->db->fetchAssoc("SELECT id, name FROM products... -
-
Michal created a post, How to type hint list of arrays?
I don't know if I'm missing something - I want to type hint an array of structured arrays just like I can do so with array of objects. For example:/** * @return array<array{id: int, name: string}> ...