mirror of
				https://github.com/shlinkio/shlink.git
				synced 2025-02-25 18:45:27 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			520 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			520 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace PHPSTORM_META;
 | 
						|
 | 
						|
use Psr\Container\ContainerInterface;
 | 
						|
use Zend\ServiceManager\ServiceManager;
 | 
						|
 | 
						|
/**
 | 
						|
 * 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('') => [
 | 
						|
        '' == '@',
 | 
						|
    ],
 | 
						|
    ServiceManager::build('') => [
 | 
						|
        '' == '@',
 | 
						|
    ],
 | 
						|
];
 |