change private to protected property for middleware key

This commit is contained in:
David Bomba 2022-11-27 19:12:38 +11:00
parent aff4e197c0
commit 15e8faf7db

View File

@ -53,6 +53,6 @@ class BankMatchingService implements ShouldQueue
public function middleware()
{
return [new WithoutOverlapping($this->company_id)];
return [new WithoutOverlapping("bank_match_rate:{$this->company_id}")];
}
}