Skip to content

Commit 38f5e79

Browse files
committed
fix: remove type hints from properties
1 parent b005067 commit 38f5e79

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/Classes/Api/V1/HttpRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
class HttpRequest
1919
{
20-
private bool $logging = false;
20+
private $logging = false;
2121

2222
public function isServerAvailable(string $url): bool
2323
{

src/Classes/Module.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,57 +28,57 @@ class Module extends ModuleInfo
2828
/**
2929
* @var string
3030
*/
31-
private string $localRootPath;
31+
private $localRootPath;
3232

3333
/**
3434
* @var string
3535
*/
36-
private string $urlRootPath;
36+
private $urlRootPath;
3737

3838
/**
3939
* @var string
4040
*/
41-
private string $modulePath;
41+
private $modulePath;
4242

4343
/**
4444
* @var string
4545
*/
46-
private string $iconPath;
46+
private $iconPath;
4747

4848
/**
4949
* @var string[]
5050
*/
51-
private array $imagePaths;
51+
private $imagePaths;
5252

5353
/**
5454
* @var string[]
5555
*/
56-
private array $docFilePaths;
56+
private $docFilePaths;
5757

5858
/**
5959
* @var string
6060
*/
61-
private string $changelogPath;
61+
private $changelogPath;
6262

6363
/**
6464
* @var string
6565
*/
66-
private string $readmePath;
66+
private $readmePath;
6767

6868
/**
6969
* @var string[]
7070
*/
71-
private array $srcFilePaths;
71+
private $srcFilePaths;
7272

7373
/**
7474
* @var bool
7575
*/
76-
private bool $isRemote;
76+
private $isRemote;
7777

7878
/**
7979
* @var bool
8080
*/
81-
private bool $isLoadable;
81+
private $isLoadable;
8282

8383
/**
8484
* Liefert den absoluten Pfad zum MMLC

0 commit comments

Comments
 (0)