Code Duplication    Length = 4-4 lines in 4 locations

src/Client.php 4 locations

@@ 217-220 (lines=4) @@
214
            unset($params['subject']);
215
        }
216
217
        if (empty($params['to']) === false) {
218
            $params['DEST'] = $params['to'];
219
            unset($params['to']);
220
        }
221
222
        if (empty($params['text']) === false) {
223
            $params['MSG'] = $params['text'];
@@ 222-225 (lines=4) @@
219
            unset($params['to']);
220
        }
221
222
        if (empty($params['text']) === false) {
223
            $params['MSG'] = $params['text'];
224
            unset($params['text']);
225
        }
226
227
        if (empty($params['sendTime']) === false) {
228
            $params['ST'] = empty($params['sendTime']) === false ? Carbon::parse($params['sendTime'])->format('YmdHis') : null;
@@ 232-235 (lines=4) @@
229
            unset($params['sendTime']);
230
        }
231
232
        if (empty($params['attachment']) === false) {
233
            $params['ATTACHMENT'] = $params['attachment'];
234
            unset($params['attachment']);
235
        }
236
237
        if (empty($params['type']) === false) {
238
            $params['TYPE'] = $params['type'];
@@ 237-240 (lines=4) @@
234
            unset($params['attachment']);
235
        }
236
237
        if (empty($params['type']) === false) {
238
            $params['TYPE'] = $params['type'];
239
            unset($params['type']);
240
        }
241
242
        return $params;
243
    }