Fix indent

This commit is contained in:
Lastorder 2025-07-15 10:07:09 +09:00 committed by GitHub
parent 307c2edf89
commit df762b2fb3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 12 additions and 12 deletions

View file

@ -389,8 +389,8 @@ class Validator
}
/**
* Returns the last error information including a field name and an error message.
* @return array The last error information
* Returns the last error information including a field name and an error message.
* @return array The last error information
*/
function getLastError()
{

View file

@ -157,7 +157,7 @@ class autoinstallModel extends autoinstall
* @param int $depth Depth of category
* @param array $list Category list
* @param array $resultList Final result list
* @return string $siblingList Comma separated list
* @return string $siblingList Comma separated list
*/
function setDepth(&$item, $depth, &$list, &$resultList)
{

View file

@ -25,7 +25,7 @@ class BoardAdminView extends Board {
// generate module model object
$oModuleModel = getModel('module');
// get the module information based on the module_srl
// get the module information based on the module_srl
if($module_srl) {
$module_info = $oModuleModel->getModuleInfoByModuleSrl($module_srl);
if(!$module_info) {

View file

@ -1018,7 +1018,7 @@ class importerAdminController extends importer
}
else
{
// Get parent comment information
// Get parent comment information
$parent_args = new stdClass();
$parent_args->comment_srl = $obj->parent_srl;
$parent_output = executeQuery('comment.getCommentListItem', $parent_args);

View file

@ -4013,7 +4013,7 @@ class MemberController extends Member
$logged_info = Context::get('logged_info');
$spam_description = trim( Context::get('spam_description') );
// get member current information
// get member current information
$member_info = MemberModel::getMemberInfoByMemberSrl($member_srl);
$cnt_comment = CommentModel::getCommentCountByMemberSrl($member_srl);
$cnt_document = DocumentModel::getDocumentCountByMemberSrl($member_srl);

View file

@ -149,7 +149,7 @@ class MenuAdminModel extends Menu
/**
* Return item information of the menu_srl
* group_srls uses a separator with comma(,) and converts to an array by explode
* group_srls uses a separator with comma(,) and converts to an array by explode
* @param int $menu_item_srl
* @return object
*/

View file

@ -316,7 +316,7 @@ class PointAdminController extends Point
// A variable to store member's points
$member = array();
// Get member information
// Get member information
$output = executeQueryArray('point.getMemberCount');
if(!$output->toBool()) return $output;

View file

@ -12,7 +12,7 @@ class PointAdminView extends Point
*/
function init()
{
// Get the configuration information
// Get the configuration information
$oModuleModel = getModel('module');
$config = $oModuleModel->getModuleConfig('point');
// Set the configuration variable

View file

@ -15,7 +15,7 @@ class PollModel extends Poll
}
/**
* @brief returns poll information
* @brief returns poll information
*/
public function _getPollinfo($poll_srl)
{
@ -78,7 +78,7 @@ class PollModel extends Poll
}
/**
* @brief returns poll information
* @brief returns poll information
*/
public function getPollinfo()
{
@ -89,7 +89,7 @@ class PollModel extends Poll
}
/**
* @brief returns poll item information
* @brief returns poll item information
*/
public function getPollitemInfo()
{