integration hydra apps

This commit is contained in:
2022-08-27 18:24:56 +02:00
parent 21fb28a6f0
commit c3328a1ba0
13 changed files with 329 additions and 8 deletions

View File

@ -75,6 +75,15 @@ class ApiService
}
break;
case "PUT":
try{
$response = \Unirest\Request::put($url,$header,$query);
}
catch (\Exception $e) {
return false;
}
break;
case "DELETE":
try{
$response = \Unirest\Request::delete($url,$header,$query);

View File

@ -25,7 +25,6 @@ class PasswordEncoder implements LegacyPasswordHasherInterface
return false;
}
var_dump($salt);
return $this->hash($plainPassword,$salt) === $hashedPassword;
}