Code Duplication    Length = 10-10 lines in 2 locations

src/Trucker/Responses/RawResponse.php 1 location

@@ 59-68 (lines=10) @@
56
     *
57
     * @return mixed
58
     */
59
    public function __call($method, $args)
60
    {
61
        if (!method_exists($this, $method)) {
62
            return call_user_func_array(
63
                [$this->response, $method],
64
                $args
65
            );
66
        }
67
        // @codeCoverageIgnoreStart
68
    }
69
70
    // @codeCoverageIgnoreEnd
71

src/Trucker/Responses/Response.php 1 location

@@ 59-68 (lines=10) @@
56
     *
57
     * @return mixed
58
     */
59
    public function __call($method, $args)
60
    {
61
        if (!method_exists($this, $method)) {
62
            return call_user_func_array(
63
                [$this->response, $method],
64
                $args
65
            );
66
        }
67
        // @codeCoverageIgnoreStart
68
    }
69
70
    // @codeCoverageIgnoreEnd
71