mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
20 lines
423 B
PHP
20 lines
423 B
PHP
|
<?php
|
||
|
namespace PHPSTORM_META;
|
||
|
|
||
|
use Interop\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('') => [
|
||
|
'' == '@',
|
||
|
],
|
||
|
];
|