1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-14 22:22:39 +01:00

fix http call (#102)

This commit is contained in:
Viktor Geringer 2017-12-29 15:48:11 +01:00 committed by GitHub
parent 405a038ee4
commit 345c5ef579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@
*/
public function refreshKickstartAll(Client $client)
{
$response = $client->get(url('/api/refresh-all'));
$response = $client->patch(url('/api/refresh-all'));
return $response->getStatusCode();
}