0

我正在尝试使我的 php 代码 psr-1 psr-2 兼容难道我没有收到一些奇怪的错误吗?实际上我不明白它到底想要我解决什么:(

问题一

错误:多行函数调用的左括号必须是该行的最后一个内容。

 if (Configuration::updateValue('AV_GTC_CT_GT_DG_CT', $AV_GTC_CT) &&
        Configuration::updateValue('AV_GTC_ST_CR_GP', $AV_GTC_ST) &&
        Configuration::updateValue('AV_GTC_SD_NN_EA_AR_CN_AT_CT', $AV_GTC_SD) &&
        Configuration::updateValue('AV_GTC_SD_NN_EA_AR_BK_CN', $AV_GTC_SD_NN_EA_AR_BK_CN) &&
        Configuration::updateValue('AV_GTC_SW_GT_TO_CR_AT_BN_AT_OR_AS_PE',
            $AV_GTC_SW_GT_TO_CR_AT_BN_AT_OR
        ) &&
        Configuration::updateValue('AV_GTC_CN_CE_FR_LG_CR_CN', $AV_GTC_CN)
    ) {
    $output .= $this->displayConfirmation($this->l('Settings updated'));
}          

第 2 期

错误:预期“如果(...){\n”;找到“如果(...)\n {\n”

if (!$customer->isGuest())
                {
                    return false;
                }

任何线索家伙?

显示相同错误的其他代码补丁

  if (!$customer->isGuest()){
    return false;
 }



if (empty($password)){
                        $password = Tools::passwdGen();
                    }
if (empty($id_customer)||empty($id_guest)){
        return false;
    }


    if (empty($id_guest) || empty($id_customer)){
        return false;
    }  

谢谢!

4

1 回答 1

0

问题1:

  • &&应该在下一行
  • 单行参数列表的打开(和关闭应该在同一行:))

无法在此处格式化源,外部网址:pastebin 链接

问题2: {应该在同一行

if (!$customer->isGuest()) {
    return false;
}
于 2016-06-13T08:02:01.813 回答