fix inspection warnings

This commit is contained in:
thrillfall 2021-08-17 19:41:54 +02:00
parent 52dde91ace
commit ab155ca94a
1 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@ use OCP\IRequest;
class SubscriptionChangeController extends Controller {
private string $AppName;
/**
* @var SubscriptionChangeSaver
*/
@ -46,7 +45,7 @@ class SubscriptionChangeController extends Controller {
* @return void
*/
public function create($add, $remove) {
return $this->subscriptionChangeSaver->saveSubscriptionChanges($add, $remove, $this->userId);
$this->subscriptionChangeSaver->saveSubscriptionChanges($add, $remove, $this->userId);
}
/**