update
This commit is contained in:
19
wp-content/plugins/youtube-feed-pro/vendor/smashballoon/customizer/app/Container.php
vendored
Normal file
19
wp-content/plugins/youtube-feed-pro/vendor/smashballoon/customizer/app/Container.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Smashballoon\Customizer;
|
||||
|
||||
/** @internal */
|
||||
class Container
|
||||
{
|
||||
public static $container;
|
||||
/**
|
||||
* @return \DI\Container
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
if (self::$container === null) {
|
||||
self::$container = (new \SmashBalloon\YoutubeFeed\Vendor\DI\ContainerBuilder())->build();
|
||||
}
|
||||
return self::$container;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user