All Projects → pulyaevskiy → phpstorm-phpdi

pulyaevskiy / phpstorm-phpdi

Licence: MIT license
PHP-DI plugin for PhpStorm

Programming Languages

java
68154 projects - #9 most used programming language

PHP-DI plugin for PhpStorm

Version Downloads Downloads last month

Plugin url : https://plugins.jetbrains.com/plugin/7694

This is very simple plugin which only implements type provider for services returned from PHP-DI container.

Strictly speaking current implementation is not dependent on PHP-DI in any way. It just supports certain way of receiving services from container which is widely used in PHP-DI:

<?php
$postRepository = $container->get(PostRepository::class);

So the only thing this plugin does is:

  1. It looks for all get (or make, since v1.2.0) method calls.
  2. It filters out all except those where first argument contains ::class substring.
  3. It extracts class FQN from the first argument and provides it as a return type for that specific method call.

Result:

Example screenshot

Contributors:

License: MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].