芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/egulias/email-validator/src/Result/MultipleErrors.php
reasons[$reason->code()] = $reason; } /** * @return Reason[] */ public function getReasons() : array { return $this->reasons; } public function reason() : Reason { return 0 !== count($this->reasons) ? current($this->reasons) : new EmptyReason(); } public function description() : string { $description = ''; foreach($this->reasons as $reason) { $description .= $reason->description() . PHP_EOL; } return $description; } public function code() : int { return 0; } }