Moved command and app creation logic to a factory for install scripts

This commit is contained in:
Alejandro Celaya
2017-07-05 18:12:03 +02:00
parent dcc09975a9
commit 2368b634e3
4 changed files with 57 additions and 16 deletions

View File

@@ -2,6 +2,7 @@
namespace PHPSTORM_META;
use Psr\Container\ContainerInterface;
use Zend\ServiceManager\ServiceManager;
/**
* PhpStorm Container Interop code completion
@@ -16,4 +17,7 @@ $STATIC_METHOD_TYPES = [
ContainerInterface::get('') => [
'' == '@',
],
ServiceManager::build('') => [
'' == '@',
],
];