diff --git a/.gitignore b/.gitignore index 4bcb43d7b0f..1cfbf977129 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,7 @@ .phpstorm.* !/.phpstorm.meta.php/ /.phpstorm.meta.php/* -!/.phpstorm.meta.php/moodle.php +!/.phpstorm.meta.php/di.php /nbproject/ CVS .DS_Store diff --git a/.phpstorm.meta.php/moodle.php b/.phpstorm.meta.php/di.php similarity index 61% rename from .phpstorm.meta.php/moodle.php rename to .phpstorm.meta.php/di.php index 527e89ff7a5..1f9f6c3000b 100644 --- a/.phpstorm.meta.php/moodle.php +++ b/.phpstorm.meta.php/di.php @@ -22,20 +22,19 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ -namespace PHPSTORM_META { +namespace PHPSTORM_META; - // Assume that anything returned by \core\di::get('...') is an instance of the first argument. - override(\core\di::get(0), map([ - '' => '@', - ])); +// Assume that anything returned by \core\di::get('...') is an instance of the first argument. +override(\core\di::get(0), map([ + '' => '@', +])); - // Assume that anything returned by \Psr\Container\ContainerInterface::get('...') is an instance of the first argument. - override(\Psr\Container\ContainerInterface::get(0), map([ - '' => '@', - ])); +// Assume that anything returned by \Psr\Container\ContainerInterface::get('...') is an instance of the first argument. +override(\Psr\Container\ContainerInterface::get(0), map([ + '' => '@', +])); - // Assume that anything returned by \DI\Container::get('...') is an instance of the first argument. - override(\DI\Container::get(0), map([ - '' => '@', - ])); -} +// Assume that anything returned by \DI\Container::get('...') is an instance of the first argument. +override(\DI\Container::get(0), map([ + '' => '@', +]));