Skip to content

Commit bdfceac

Browse files
author
Holger Lösken
committed
PHPStan level 5
1 parent 788de7e commit bdfceac

22 files changed

+108
-303
lines changed

.github/workflows/tests.yml

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ jobs:
4949
env:
5050
APP_ENV: testing
5151

52+
- name: Run PHPStan
53+
run: ./vendor/bin/phpstan
54+
5255
- name: Run tests
5356
run: ./vendor/bin/phpunit
5457
env:

composer.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
"ext-json": "*",
3030
"ext-zip": "*",
3131
"guzzlehttp/guzzle": "^7.0",
32-
"laravel/framework": "^8.0 || ^9.0"
32+
"laravel/framework": "^8.0 || ^9.0",
33+
"phpstan/extension-installer": "^1.1",
34+
"phpstan/phpstan-phpunit": "^1.0"
3335
},
3436
"require-dev": {
3537
"dg/bypass-finals": "^1.3",
@@ -54,7 +56,10 @@
5456
}
5557
},
5658
"config": {
57-
"sort-packages": true
59+
"sort-packages": true,
60+
"allow-plugins": {
61+
"phpstan/extension-installer": true
62+
}
5863
},
5964
"extra": {
6065
"laravel": {

phpstan.neon.dist

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
parameters:
2+
level: 5
3+
paths:
4+
- src
5+
- config
6+
- tests

src/Contracts/SourceRepositoryTypeContract.php

-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ interface SourceRepositoryTypeContract
1010
{
1111
/**
1212
* Fetches the latest version. If you do not want the latest version, specify one and pass it.
13-
*
14-
* @param string $version
15-
* @return Release
1613
*/
1714
public function fetch(string $version = ''): Release;
1815

src/Events/UpdateAvailable.php

+1-9
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,13 @@
44

55
class UpdateAvailable
66
{
7-
/**
8-
* @var string
9-
*/
10-
protected $newVersion;
7+
protected string $newVersion;
118

129
public function __construct(string $newVersion)
1310
{
1411
$this->newVersion = $newVersion;
1512
}
1613

17-
/**
18-
* Get the new version.
19-
*
20-
* @return string
21-
*/
2214
public function getVersionAvailable(): string
2315
{
2416
return $this->newVersion;

src/Events/UpdateFailed.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class UpdateFailed
88
{
9-
protected $release;
9+
protected Release $release;
1010

1111
public function __construct(Release $release)
1212
{

src/Events/UpdateSucceeded.php

+1-9
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,13 @@
66

77
class UpdateSucceeded
88
{
9-
/**
10-
* @var Release
11-
*/
12-
protected $release;
9+
protected Release $release;
1310

1411
public function __construct(Release $release)
1512
{
1613
$this->release = $release;
1714
}
1815

19-
/**
20-
* Get the new version.
21-
*
22-
* @return string
23-
*/
2416
public function getVersionUpdatedTo(): ?string
2517
{
2618
return $this->release->getVersion();

src/Models/Release.php

+12-67
Original file line numberDiff line numberDiff line change
@@ -19,84 +19,57 @@ final class Release
1919
/**
2020
* Name of release file.
2121
* Example: release-1.1.zip.
22-
*
23-
* @var string
2422
*/
25-
private $release;
23+
private ?string $release = null;
2624

2725
/**
2826
* Path to download the release to.
2927
* Example: /tmp/release-1.1.zip.
30-
*
31-
* @var string
3228
*/
33-
private $storagePath;
29+
private ?string $storagePath = null;
3430

3531
/**
3632
* Path where the update should be applied to. Most probably to your base_path() - that's where your
3733
* current Laravel installation runs.
38-
*
39-
* @var Finder
4034
*/
41-
private $updatePath;
35+
private ?Finder $updatePath = null;
4236

4337
/**
4438
* The version name.
4539
* Example: 1.1 or v1.1.
46-
*
47-
* @var string
4840
*/
49-
private $version;
41+
private ?string $version = null;
5042

5143
/**
5244
* Url to download the release from.
53-
*
54-
* @var string
5545
*/
56-
private $downloadUrl;
46+
private ?string $downloadUrl = null;
5747

58-
/**
59-
* @var Filesystem
60-
*/
61-
protected $filesystem;
48+
protected Filesystem $filesystem;
6249

6350
public function __construct(Filesystem $filesystem)
6451
{
6552
$this->filesystem = $filesystem;
6653
}
6754

68-
/**
69-
* @return string
70-
*/
7155
public function getRelease(): ?string
7256
{
7357
return $this->release;
7458
}
7559

76-
/**
77-
* @param string $release
78-
* @return Release
79-
*/
80-
public function setRelease(string $release): self
60+
public function setRelease(string $release): Release
8161
{
8262
$this->release = $release;
8363

8464
return $this;
8565
}
8666

87-
/**
88-
* @return string
89-
*/
9067
public function getStoragePath(): ?string
9168
{
9269
return $this->storagePath;
9370
}
9471

95-
/**
96-
* @param string $storagePath
97-
* @return Release
98-
*/
99-
public function setStoragePath(string $storagePath): self
72+
public function setStoragePath(string $storagePath): Release
10073
{
10174
$this->storagePath = $storagePath;
10275

@@ -109,10 +82,8 @@ public function setStoragePath(string $storagePath): self
10982

11083
/**
11184
* Update the storage path to include the release name.
112-
*
113-
* @return Release
11485
*/
115-
public function updateStoragePath(): self
86+
public function updateStoragePath(): Release
11687
{
11788
if (! empty($this->getRelease())) {
11889
$this->storagePath = Str::finish($this->storagePath, DIRECTORY_SEPARATOR).$this->getRelease();
@@ -123,58 +94,36 @@ public function updateStoragePath(): self
12394
return $this;
12495
}
12596

126-
/**
127-
* @return Finder
128-
*/
12997
public function getUpdatePath(): ?Finder
13098
{
13199
return $this->updatePath;
132100
}
133101

134-
/**
135-
* @param string $updatePath
136-
* @param array $excluded
137-
* @return Release
138-
*/
139-
public function setUpdatePath(string $updatePath, array $excluded = []): self
102+
public function setUpdatePath(string $updatePath, array $excluded = []): Release
140103
{
141104
$this->updatePath = (new Finder())->in($updatePath)->exclude($excluded);
142105

143106
return $this;
144107
}
145108

146-
/**
147-
* @return string
148-
*/
149109
public function getVersion(): ?string
150110
{
151111
return $this->version;
152112
}
153113

154-
/**
155-
* @param string $version
156-
* @return Release
157-
*/
158-
public function setVersion(string $version): self
114+
public function setVersion(string $version): Release
159115
{
160116
$this->version = $version;
161117

162118
return $this;
163119
}
164120

165-
/**
166-
* @return string
167-
*/
168121
public function getDownloadUrl(): ?string
169122
{
170123
return $this->downloadUrl;
171124
}
172125

173-
/**
174-
* @param string $downloadUrl
175-
* @return Release
176-
*/
177-
public function setDownloadUrl(string $downloadUrl): self
126+
public function setDownloadUrl(string $downloadUrl): Release
178127
{
179128
$this->downloadUrl = $downloadUrl;
180129

@@ -242,8 +191,6 @@ public function download(ClientInterface $client): ResponseInterface
242191
/**
243192
* Create a release sub-folder inside the storage dir.
244193
* Example: /tmp/release-1.2/.
245-
*
246-
* @return bool
247194
*/
248195
protected function createReleaseFolder(): bool
249196
{
@@ -273,8 +220,6 @@ protected function createReleaseFolder(): bool
273220

274221
/**
275222
* Check if the release file has already been downloaded.
276-
*
277-
* @return bool
278223
*/
279224
public function isSourceAlreadyFetched(): bool
280225
{

src/Models/UpdateExecutor.php

+7-6
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ final class UpdateExecutor
1919

2020
/**
2121
* Define the base path where the update should be applied into.
22-
*
23-
* @var string
2422
*/
25-
protected $basePath;
23+
protected string $basePath;
2624

2725
public function __construct()
2826
{
@@ -44,16 +42,19 @@ public function setBasePath(string $path): self
4442
}
4543

4644
/**
47-
* @param Release $release
48-
* @return bool
49-
*
5045
* @throws Exception
5146
*/
5247
public function run(Release $release): bool
5348
{
5449
if (checkPermissions($this->basePath)) {
5550
$releaseFolder = createFolderFromFile($release->getStoragePath());
5651

52+
if($releaseFolder === '') {
53+
event(new UpdateFailed($release));
54+
55+
return false;
56+
}
57+
5758
// Move all directories first
5859
$this->moveFolders($releaseFolder);
5960

src/Notifications/EventHandler.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
final class EventHandler
1616
{
17-
/** @var Repository */
18-
protected $config;
17+
protected Repository $config;
1918

2019
public function __construct(Repository $config)
2120
{

src/Notifications/Notifications/UpdateSucceeded.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@
1010

1111
final class UpdateSucceeded extends BaseNotification
1212
{
13-
/**
14-
* @var UpdateSucceededEvent
15-
*/
16-
protected $event;
13+
protected UpdateSucceededEvent $event;
1714

1815
public function toMail(): MailMessage
1916
{
@@ -22,7 +19,7 @@ public function toMail(): MailMessage
2219
->subject(config('app.name').': Update succeeded');
2320
}
2421

25-
public function setEvent(UpdateSucceededEvent $event)
22+
public function setEvent(UpdateSucceededEvent $event): UpdateSucceeded
2623
{
2724
$this->event = $event;
2825

0 commit comments

Comments
 (0)