shlink/.phpstorm.meta.php

24 lines
538 B
PHP
Raw Normal View History

<?php
namespace PHPSTORM_META;
2017-04-16 11:27:27 +03:00
use Psr\Container\ContainerInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
/**
* PhpStorm Container Interop code completion
*
* Add code completion for container-interop.
*
* \App\ClassName::class will automatically resolve to it's own name.
*
* Custom strings like ``"cache"`` or ``"logger"`` need to be added manually.
*/
$STATIC_METHOD_TYPES = [
ContainerInterface::get('') => [
'' == '@',
],
ServiceLocatorInterface::build('') => [
'' == '@',
],
];