Code Duplication    Length = 3-3 lines in 2 locations

src/PaymentVerification.php 2 locations

@@ 171-173 (lines=3) @@
168
     */
169
    protected function getFullResponseData()
170
    {
171
        if (empty($this->response['status'])) {
172
            return $this->full_response = ['status' => false, 'message' => $this->response['msg']];
173
        }
174
175
        $data = ['status' => true, 'data' => []];
176
        foreach ($this->txn_id as $item) {
@@ 199-201 (lines=3) @@
196
     */
197
    protected function getSimpleResponseData()
198
    {
199
        if (empty($this->response['status'])) {
200
            return ['status' => false, 'message' => $this->response['msg']];
201
        }
202
203
        $data = ['status' => true, 'data' => []];
204
        foreach ($this->txn_id as $item) {