mirror of
https://github.com/nextcloud/talk_matterbridge.git
synced 2025-12-17 21:12:08 +01:00
fix: Constructor promotion
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
00d2c435e8
commit
8914f3b90e
1 changed files with 3 additions and 6 deletions
|
|
@ -30,14 +30,11 @@ use OCP\Migration\IOutput;
|
|||
use OCP\Migration\IRepairStep;
|
||||
|
||||
class RegisterBinary implements IRepairStep {
|
||||
|
||||
public const VERSION = '1.26.0';
|
||||
|
||||
/** @var IConfig */
|
||||
protected $config;
|
||||
|
||||
public function __construct(IConfig $config) {
|
||||
$this->config = $config;
|
||||
public function __construct(
|
||||
protected IConfig $config,
|
||||
) {
|
||||
}
|
||||
|
||||
public function getName(): string {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue