Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable30] chore: use typed properties #4213

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 8 additions & 16 deletions lib/Service/FileService.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,16 @@
class FileService {
use TFile;

/** @var bool */
private $showSigners = false;
/** @var bool */
private $showSettings = false;
/** @var bool */
private $showVisibleElements = false;
/** @var bool */
private $showMessages = false;
/** @var File|null */
private $file;
private bool $showSigners = false;
private bool $showSettings = false;
private bool $showVisibleElements = false;
private bool $showMessages = false;
private ?File $file = null;
private ?SignRequest $signRequest = null;
/** @var IUser|null */
private $me;
private ?IUser $me = null;
private ?int $identifyMethodId = null;
/** @var array */
private $signers = [];
/** @var array */
private $settings = [
private array $signers = [];
private array $settings = [
'canSign' => false,
'canRequestSign' => false,
'signerFileUuid' => null,
Expand Down
Loading