shlink/.phpstorm.meta.php
2017-04-16 10:27:27 +02:00

19 lines
419 B
PHP

<?php
namespace PHPSTORM_META;
use Psr\Container\ContainerInterface;
/**
* 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('') => [
'' == '@',
],
];