STRATO-apps/wordpress_03/app/wp-content/plugins/fluent-smtp/app/App.php
SHA-256: 64a1ceb40ac1661bd11eb37ef5627a7ab95316891dd38a7184d0d7beafb3f01e
<?php
namespace FluentMail\App;
use FluentMail\Includes\Core\Application;
class App
{
public static function getInstance($module = null)
{
$app = Application::getInstance();
if ($module) {
return $app[$module];
}
return $app;
}
public static function __callStatic($method, $params)
{
return static::getInstance($method);
}
}