2016-08-05 00:20:40 -05:00
|
|
|
<?php
|
|
|
|
namespace PHPSTORM_META;
|
|
|
|
|
2017-04-16 03:27:27 -05:00
|
|
|
use Psr\Container\ContainerInterface;
|
2020-01-01 14:11:53 -06:00
|
|
|
use Laminas\ServiceManager\ServiceLocatorInterface;
|
2016-08-05 00:20:40 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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('') => [
|
|
|
|
'' == '@',
|
|
|
|
],
|
2019-01-28 03:52:05 -06:00
|
|
|
ServiceLocatorInterface::build('') => [
|
2017-07-05 11:12:03 -05:00
|
|
|
'' == '@',
|
|
|
|
],
|
2016-08-05 00:20:40 -05:00
|
|
|
];
|