قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 14:37:49 +00:00

See https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Advanced+Metadata For example: ``` $logger = StaticContainer::get('Psr\Log\LoggerInterface'); $logger-> ``` The autocompletion would work based on the argument passed to `StaticContainer::get()`. (cherry picked from commit 92960ac)
11 خطوط
165 B
PHP
11 خطوط
165 B
PHP
<?php
|
|
|
|
namespace PHPSTORM_META
|
|
{
|
|
$STATIC_METHOD_TYPES = array(
|
|
\Piwik\Container\StaticContainer::get('') => [
|
|
"" == "@",
|
|
],
|
|
);
|
|
}
|