Alvaro
- Total activity 119
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 14
- Subscriptions 34
-
Created Make IDE aware of Carbon macros
The Carbon library allows creating custom methods:Carbon::macro( 'isDayOff', static fn (WorkingWeek $workingWeek) => $workingWeek->isWeekend(self::this()) );Is there a way to make PhpStorm ... -
Created Gutter icon to run HTTP requests runs wrong request
If you have an HTTP file with two requests and you attempt to run the second request by clicking on the green gutter arrow icon while the cursor is on the first request, there's this annoying bug t... -
Created Congrats for revamped HTTP pane
I just wanted to share huge kudos with the people that made the new structure pane for HTTP requests possible.It's an amazing improvement, and the kind of quality of life hacks that make everybody ... -
Edited phpcs: Could not open input file
When I open my project, I get a toast message about PHP_CodeSniffer not being able to find input file. I'm unable to figure out the exact settings I need to use. My project root has a phpcs.xml fil... -
Edited Remove redundant docblock tags
I was very excited about the feature to remove redundant docblock tags in 2023.2, but it isn't as smart as I had anticipated. /** * This is just some example I made up for the forum post. * * ... -
Edited Block comments get misaligned on copy+paste
PhpStorm has recently started to mess code comments when I copy and paste, and "Reformat Code" doesn't seem to fix it. I haven't changed any code style setting and, if I had, I've no idea which one... -
Created Inspect function return value
Xdebug/3.2 allows to inspect function return value, but I'm not sure I fully understand how it works. According to the information I found (which unfortunately seems to be all videos), you seemingl... -
Created Open Excel file from Services pane
I have an HTTP Request where I save response to a file: ### DownloadGET {{url}}>>! /home/alvaro/files/{{filename}} The Services panel generates a link. When I click on it for the first time, I ge... -
Created Live template for HTTP headers
I want to avoid having to type or copy the same headers every time I need to create an HTTP request. I've created a Live Template: But it only gets expanded if I use it before the request itself: ... -
Edited HTTP Requests: variable parsing in quoted header values
I've a request like: ### CreatePOST http://example.com:5000/api/v1/bulkcreate?rnd={{$timestamp}}Content-Type: multipart/form-data; boundary=WebAppBoundaryAuthorization: Bearer YOURTOKENHEREAlvaro-T...