@@ -19,84 +19,57 @@ final class Release
19
19
/**
20
20
* Name of release file.
21
21
* Example: release-1.1.zip.
22
- *
23
- * @var string
24
22
*/
25
- private $ release ;
23
+ private ? string $ release = null ;
26
24
27
25
/**
28
26
* Path to download the release to.
29
27
* Example: /tmp/release-1.1.zip.
30
- *
31
- * @var string
32
28
*/
33
- private $ storagePath ;
29
+ private ? string $ storagePath = null ;
34
30
35
31
/**
36
32
* Path where the update should be applied to. Most probably to your base_path() - that's where your
37
33
* current Laravel installation runs.
38
- *
39
- * @var Finder
40
34
*/
41
- private $ updatePath ;
35
+ private ? Finder $ updatePath = null ;
42
36
43
37
/**
44
38
* The version name.
45
39
* Example: 1.1 or v1.1.
46
- *
47
- * @var string
48
40
*/
49
- private $ version ;
41
+ private ? string $ version = null ;
50
42
51
43
/**
52
44
* Url to download the release from.
53
- *
54
- * @var string
55
45
*/
56
- private $ downloadUrl ;
46
+ private ? string $ downloadUrl = null ;
57
47
58
- /**
59
- * @var Filesystem
60
- */
61
- protected $ filesystem ;
48
+ protected Filesystem $ filesystem ;
62
49
63
50
public function __construct (Filesystem $ filesystem )
64
51
{
65
52
$ this ->filesystem = $ filesystem ;
66
53
}
67
54
68
- /**
69
- * @return string
70
- */
71
55
public function getRelease (): ?string
72
56
{
73
57
return $ this ->release ;
74
58
}
75
59
76
- /**
77
- * @param string $release
78
- * @return Release
79
- */
80
- public function setRelease (string $ release ): self
60
+ public function setRelease (string $ release ): Release
81
61
{
82
62
$ this ->release = $ release ;
83
63
84
64
return $ this ;
85
65
}
86
66
87
- /**
88
- * @return string
89
- */
90
67
public function getStoragePath (): ?string
91
68
{
92
69
return $ this ->storagePath ;
93
70
}
94
71
95
- /**
96
- * @param string $storagePath
97
- * @return Release
98
- */
99
- public function setStoragePath (string $ storagePath ): self
72
+ public function setStoragePath (string $ storagePath ): Release
100
73
{
101
74
$ this ->storagePath = $ storagePath ;
102
75
@@ -109,10 +82,8 @@ public function setStoragePath(string $storagePath): self
109
82
110
83
/**
111
84
* Update the storage path to include the release name.
112
- *
113
- * @return Release
114
85
*/
115
- public function updateStoragePath (): self
86
+ public function updateStoragePath (): Release
116
87
{
117
88
if (! empty ($ this ->getRelease ())) {
118
89
$ this ->storagePath = Str::finish ($ this ->storagePath , DIRECTORY_SEPARATOR ).$ this ->getRelease ();
@@ -123,58 +94,36 @@ public function updateStoragePath(): self
123
94
return $ this ;
124
95
}
125
96
126
- /**
127
- * @return Finder
128
- */
129
97
public function getUpdatePath (): ?Finder
130
98
{
131
99
return $ this ->updatePath ;
132
100
}
133
101
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
140
103
{
141
104
$ this ->updatePath = (new Finder ())->in ($ updatePath )->exclude ($ excluded );
142
105
143
106
return $ this ;
144
107
}
145
108
146
- /**
147
- * @return string
148
- */
149
109
public function getVersion (): ?string
150
110
{
151
111
return $ this ->version ;
152
112
}
153
113
154
- /**
155
- * @param string $version
156
- * @return Release
157
- */
158
- public function setVersion (string $ version ): self
114
+ public function setVersion (string $ version ): Release
159
115
{
160
116
$ this ->version = $ version ;
161
117
162
118
return $ this ;
163
119
}
164
120
165
- /**
166
- * @return string
167
- */
168
121
public function getDownloadUrl (): ?string
169
122
{
170
123
return $ this ->downloadUrl ;
171
124
}
172
125
173
- /**
174
- * @param string $downloadUrl
175
- * @return Release
176
- */
177
- public function setDownloadUrl (string $ downloadUrl ): self
126
+ public function setDownloadUrl (string $ downloadUrl ): Release
178
127
{
179
128
$ this ->downloadUrl = $ downloadUrl ;
180
129
@@ -242,8 +191,6 @@ public function download(ClientInterface $client): ResponseInterface
242
191
/**
243
192
* Create a release sub-folder inside the storage dir.
244
193
* Example: /tmp/release-1.2/.
245
- *
246
- * @return bool
247
194
*/
248
195
protected function createReleaseFolder (): bool
249
196
{
@@ -273,8 +220,6 @@ protected function createReleaseFolder(): bool
273
220
274
221
/**
275
222
* Check if the release file has already been downloaded.
276
- *
277
- * @return bool
278
223
*/
279
224
public function isSourceAlreadyFetched (): bool
280
225
{
0 commit comments