Andrea
- Total activity 57
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 15
-
Created Live templates expressions: how to decapitalize with underscores?
Hi,I'm trying to create some live templates following the company code styling and I'd like to have a variable named all lowercase, with underscore.So something similar to what capitalizeAndUndersc... -
Created Breakpoints on find usages results (filtered)
I need to put a breakpoint in all places where a variable is written.With find usage I can show only "Value write" results, but there is any way to mark these result as breakpoints, without going t... -
Created How to specify variable scope
In some classes I've a code like this:function my_method() { $something = array(); if ( $a != $b ) { $something = $this->my_other_method( $a, $b); } include SOME_CONSTAN...