Fix unnecessary semicolon

This commit is contained in:
Kijin Sung 2023-09-25 22:40:33 +09:00
parent 3c415e18d5
commit 7cac909435

View file

@ -986,14 +986,15 @@ class DocumentModel extends Document
} }
/** /**
* Wanted to set document information * Get document module config
*
* @return object * @return object
*/ */
public static function getDocumentConfig() public static function getDocumentConfig()
{ {
if (self::$_config === null) if (self::$_config === null)
{ {
self::$_config = ModuleModel::getModuleConfig('document') ?: new stdClass;; self::$_config = ModuleModel::getModuleConfig('document') ?: new stdClass;
} }
return self::$_config; return self::$_config;
} }