Laravel\Lumen\Testing\Concerns\MakesHttpRequests::patch PHP Метод

patch() публичный Метод

Visit the given URI with a PATCH request.
public patch ( string $uri, array $data = [], array $headers = [] )
$uri string
$data array
$headers array
    public function patch($uri, array $data = [], array $headers = [])
    {
        $server = $this->transformHeadersToServerVars($headers);
        $this->call('PATCH', $uri, $data, [], [], $server);
        return $this;
    }