Code Duplication    Length = 6-7 lines in 2 locations

src/Models/Ticket.php 2 locations

@@ 61-66 (lines=6) @@
58
     * @param string $content
59
     * @return object
60
     */
61
    public function ticketAnswer(int $sellerId, int $ticketId, string $content): object {
62
        $this->_parameters["sellerId"] = $sellerId;
63
        $this->_parameters["ticketId"] = $ticketId;
64
        $this->_parameters["content"] = $content;
65
        return $this->_client->TicketAnswer($this->_parameters);
66
    }
67
68
    /**
69
     * @param int $reasonId
@@ 75-81 (lines=7) @@
72
     * @param string $content
73
     * @return object
74
     */
75
    public function create(int $reasonId, int $sellerId, string $header, string $content): object {
76
        $this->_parameters["reasonId"] = $reasonId;
77
        $this->_parameters["sellerId"] = $sellerId;
78
        $this->_parameters["header"] = $header;
79
        $this->_parameters["content"] = $content;
80
        return $this->_client->TicketCreate($this->_parameters);
81
    }
82
83
    /**
84
     * @return object