Skip to content

Commit

Permalink
fix: Constructor promotion
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Oct 18, 2024
1 parent 00d2c43 commit 8914f3b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions lib/Migration/RegisterBinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,11 @@
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 {
Expand Down

0 comments on commit 8914f3b

Please sign in to comment.