Alexei Svitelikov

- Total activity 19
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Created Argument hint to show path suggestions
Is it possible to hint phpstorm to show path suggestions for a specific argument?Something like /**@paramHint completePath $path*/function compile_template($path){} -
Created Go to variable class
class A { /** * @return B[] */ public function getItems(){ /**..**/}} class B {} $a = new A();$items = $a->getItems(); foreach ($items as $item){$item->} How do i go to the class ... -
Created PHPDoc type hinting for array of objects
// core classclass ArrayCollection extends Countable, IteratorAggregate, ArrayAcces { /* @var array */ // array of objects private $_elements; public function key() { return ... -
Created Go to beginning/end of the tag
<span>[cursor]</span>is there a shortcut to go to beginning/end of the tag ? -
Created Action popup shortcut problem
I press Ctrl+Shift+A to get an action popup, how do i activate the checkbox at "Include non-menu actions" using a keyboard shortcut? -
Created Display .tpl files as simple html+php files
I'm using a cms where template files have .tpl extension, but they don't use any templating engine like Smarty, those are just simple html and php code mix files. Currently those files are parsed a... -
Created What is the workflow in my case?
Say I have many sites/var/www/site_based_on_system_1/var/www/site_based_on_system_2...and all of them are based on the same system files stored in/var/www/my_site_systemI.e. their basic functionali...