Code Duplication    Length = 8-8 lines in 2 locations

src/Paystack/Routes/Transfer.php 2 locations

@@ 71-78 (lines=8) @@
68
        ];
69
    }
70
71
    public static function disableOtpFinalize()
72
    {
73
        return [
74
            RouteInterface::METHOD_KEY => RouteInterface::POST_METHOD,
75
            RouteInterface::ENDPOINT_KEY => Transfer::root() . '/disable_otp_finalize',
76
            RouteInterface::PARAMS_KEY => ['otp'],
77
        ];
78
    }
79
80
    public static function fetch()
81
    {
@@ 80-87 (lines=8) @@
77
        ];
78
    }
79
80
    public static function fetch()
81
    {
82
        return [
83
            RouteInterface::METHOD_KEY => RouteInterface::GET_METHOD,
84
            RouteInterface::ENDPOINT_KEY => Transfer::root() . '/{id}',
85
            RouteInterface::ARGS_KEY => ['id'],
86
        ];
87
    }
88
89
    public static function getList()
90
    {