Completed
Push — master ( c13142...c0435c )
by Tobias
02:34
created

src/Api/Invoice.php (1 issue)

duplicate/similar classes.

Duplication Informational

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Billogram\Api;
6
7
use Billogram\Exception\Domain\ValidationException;
8
use Billogram\Model\Invoice\Invoice as Model;
9
use Billogram\Model\Invoice\InvoiceCollection;
10
11
/**
12
 * @author Ibrahim Hizeoui <[email protected]>
13
 */
14 View Code Duplication
class Invoice extends HttpApi
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
15
{
16
    /**
17
     * @param array $param
18
     *
19
     * @return string|array
20
     *
21
     * @see https://billogram.com/api/documentation#billogram_call_create
22
     */
23 1
    public function search(array $param = [])
24
    {
25 1
        $param = array_merge(['page' => 1, 'page_size' => 100], $param);
26 1
        $response = $this->httpGet('/billogram', $param);
27 1
        if (!$this->hydrator) {
28
            return $response;
29
        }
30
31
        // Use any valid status code here
32 1
        if ($response->getStatusCode() !== 200) {
33
            $this->handleErrors($response);
34
        }
35
36 1
        return $this->hydrator->hydrate($response, InvoiceCollection::class);
37
    }
38
39
    /**
40
     * @param string $invoiceId
41
     * @param array  $param
42
     *
43
     * @return mixed|\Psr\Http\Message\ResponseInterface
44
     *
45
     * @see https://billogram.com/api/documentation#billogram_call_create
46
     */
47 2
    public function fetch(string $invoiceId, array $param = [])
48
    {
49 2
        $response = $this->httpGet('/billogram/'.$invoiceId, $param);
50 2
        if (!$this->hydrator) {
51
            return $response;
52
        }
53
        // Use any valid status code here
54 2
        if ($response->getStatusCode() !== 200) {
55
            $this->handleErrors($response);
56
        }
57
58 2
        return $this->hydrator->hydrate($response, Model::class);
59
    }
60
61
    /**
62
     * @param Model $invoice
63
     *
64
     * @return mixed|\Psr\Http\Message\ResponseInterface
65
     *
66
     * @see https://billogram.com/api/documentation#billogram_call_create
67
     *
68
     * @throws ValidationException
69
     */
70 1
    public function create(Model $invoice)
71
    {
72 1
        $response = $this->httpPost('/billogram', $invoice->toArray());
73 1
        if (!$this->hydrator) {
74
            return $response;
75
        }
76
        // Use any valid status code here
77 1
        if ($response->getStatusCode() !== 200) {
78
            $this->handleErrors($response);
79
        }
80
81 1
        return $this->hydrator->hydrate($response, Model::class);
82
    }
83
84
    /**
85
     * @param string $invoiceId
86
     * @param Model  $invoice
87
     *
88
     * @return mixed|\Psr\Http\Message\ResponseInterface
89
     *
90
     * @see https://billogram.com/api/documentation#billogram_call_create
91
     *
92
     * @throws ValidationException
93
     */
94 1
    public function update(string $invoiceId, Model $invoice)
95
    {
96 1
        $response = $this->httpPut('/billogram/'.$invoiceId, $invoice->toArray());
97 1
        if (!$this->hydrator) {
98
            return $response;
99
        }
100
        // Use any valid status code here
101 1
        if ($response->getStatusCode() !== 200) {
102
            $this->handleErrors($response);
103
        }
104
105 1
        return $this->hydrator->hydrate($response, Model::class);
106
    }
107
}
108