CustomHeader; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase } /** * Get the PHPMailer line ending. * * @since 2.2.0 * * @return string */ public function get_line_ending() { return $this->LE; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase } /** * Throw PHPMailer exception. * * @since 4.0.0 * * @param string $error Error message. * * @throws phpmailerException PHPMailer exception. */ protected function throw_exception( $error ) { throw new phpmailerException( $error ); } }