Code Duplication    Length = 6-6 lines in 2 locations

src/Models/Ticket.php 2 locations

@@ 35-40 (lines=6) @@
32
     * @param int $pageSize
33
     * @return object
34
     */
35
    public function ticketListingAssignedToSeller(int $sellerId, int $startValue = 1, int $pageSize = 1): object {
36
        $this->_parameters["sellerId"] = $sellerId;
37
        $this->_parameters["first"] = $startValue;
38
        $this->_parameters["pageSize"] = $pageSize;
39
        return $this->_client->TicketListingAssignedToSeller($this->_parameters);
40
    }
41
42
    /**
43
     * @param int $sellerId
@@ 48-53 (lines=6) @@
45
     * @param int $pageSize
46
     * @return object
47
     */
48
    public function ticketListingBelongsToSeller(int $sellerId, int $startValue = 1, int $pageSize = 1): object {
49
        $this->_parameters["sellerId"] = $sellerId;
50
        $this->_parameters["first"] = $startValue;
51
        $this->_parameters["pageSize"] = $pageSize;
52
        return $this->_client->TicketListingBelongsToSeller($this->_parameters);
53
    }
54
55
    /**
56
     * @param int $sellerId