Stephan Krauß
- Total activity 290
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 112
-
Created Autocomplete elements of an array
Hello !I work with a dependency injection container.( http://pimple.sensiolabs.org/ )For example:------------------- private $myArray = array(); public function serviceContainer() { ... -
Created PhpStorm and UML
Hello!What is the road map of UML and more PhpStorm?If the tool is 'yfile' developed?Sincerely yoursStephan -
Created Exclude files 'reformate code'
Hello!I commite files into my version control (Git).At the same time I correct the code. (Reformate code)Is there a way of correcting certain file types to exclude?I would not correct the code in h... -
Created Search for duplicate code in certain folders
Hello!I have a project that was created with the Zend Framework.For this project classes were created in different folders.For example:/ application / modules / front / controllers // application /... -
Created Reformate Php Code
Hello!I have a php script using the tool 'code' -> 'Reformat code' changes.After the change I received a modified script with the following line.$foo = $this->bar[ $i ];What should I change to get ... -
Created Ablaufpläne mit PhpStorm
Hello!Seeking to create an easy way schedules with PhpStorm.In addition I have tested the function of UML PhpStorm.Unfortunately, I missed some opportunities.I want to hide individual methods of a ... -
Created Favorites Panel is buggy
Hello!I work with PhpStorm 6.0.2.The panel will be favorites breakpoints and bookmarks shown that no longer exist. Here's a screenshot. The favorites panel are breakpoints to see second Breakpoint ... -
Created Data objects and PhpStorm
I am currently testing the use of data objects.Here is an example:---------------------------------------class data implements arrayaccess { protected $firstname = null; protected $lastname =... -
Created autocomplete dependency injection container
I work with the dependency injection container of the Symphony framework.Here's an example.---------------------------------------<?phpinclude_once('Pimple.php');include_once('bar.php');class index... -
Created autocompletion of methods
Hello!At the moment I am testing different PHP design patterns.In addition I have written the following classes to the test.----------------------------------------------class foo { protected $b...