1
vote
1answer
75 views

JetBrains phpStorm REPEAT Live Template CONTINUOUSLY until user abort (ESC)

Consider these live template for php array(): Template- ari '$KEY1$'=>'$VAL1$', Template- arr array( $REPEAT$ )$ENDS$ I introduced a variable $REPEAT$. what I want there is to repeat another ...
3
votes
2answers
219 views

In PHPStorm, How to breakpoint in a method of a PHPUnit class?

In PHPStorm, I want to debug a PHPUnit class. If I set a breakpoint in a method of the unit-testing class (the class that inherits from PHPUnit_Framework_TestCase), whenever I run the test, PHPStorm ...