We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 566c640 commit 0b86ca6Copy full SHA for 0b86ca6
1 file changed
src/Migration/Sources/JSON.php
@@ -29,9 +29,11 @@ class JSON extends Source
29
30
private Device $device;
31
32
+ /** @noinspection PhpPropertyOnlyWrittenInspection */
33
+ private ?UtopiaDatabase $dbForProject;
34
+
35
private bool $downloaded = false;
36
- /** @noinspection PhpUnusedParameterInspection */
37
public function __construct(
38
string $resourceId,
39
string $filePath,
@@ -41,6 +43,9 @@ public function __construct(
41
43
$this->device = $device;
42
44
$this->filePath = $filePath;
45
$this->resourceId = $resourceId;
46
47
+ /* kept for composer check */
48
+ $this->dbForProject = $dbForProject;
49
}
50
51
public static function getName(): string
0 commit comments