.phpstorm.meta.php 541 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace PHPSTORM_META;
  3. use Psr\Container\ContainerInterface;
  4. use Laminas\ServiceManager\ServiceLocatorInterface;
  5. /**
  6. * PhpStorm Container Interop code completion
  7. *
  8. * Add code completion for container-interop.
  9. *
  10. * \App\ClassName::class will automatically resolve to it's own name.
  11. *
  12. * Custom strings like ``"cache"`` or ``"logger"`` need to be added manually.
  13. */
  14. $STATIC_METHOD_TYPES = [
  15. ContainerInterface::get('') => [
  16. '' == '@',
  17. ],
  18. ServiceLocatorInterface::build('') => [
  19. '' == '@',
  20. ],
  21. ];