@@ -164,7 +164,7 @@ class MyCommand implements Command, HasBucket
164164
165165 protected $something ;
166166
167- public function getBucket(): string
167+ public function getBucket()
168168 {
169169 return $this -> bucket;
170170 }
@@ -176,7 +176,7 @@ class MyCommand implements Command, HasBucket
176176 return $this ;
177177 }
178178
179- public function getSomething(): string
179+ public function getSomething()
180180 {
181181 return $this -> something;
182182 }
@@ -241,7 +241,7 @@ class MyPlainCommand implements PlainCommand, HasBucket
241241{
242242 protected $args = [];
243243
244- public function getBucket(): string
244+ public function getBucket()
245245 {
246246 return $this -> args[' Bucket' ] ?? ' ' ;
247247 }
@@ -253,12 +253,12 @@ class MyPlainCommand implements PlainCommand, HasBucket
253253 return $this ;
254254 }
255255
256- public function getSomething(): string
256+ public function getSomething()
257257 {
258258 return $this -> args[' something' ] ?? ' ' ;
259259 }
260260
261- public function setSomething(string $something )
261+ public function setSomething($something)
262262 {
263263 $this -> args[' something' ] = $something ;
264264
@@ -283,4 +283,5 @@ allow to execute this command immediately: `$command->setSomething('some value')
283283# # License
284284
285285Yii2 AWS S3 is licensed under the MIT License.
286+
286287See the [LICENSE](LICENSE) file for more information.
0 commit comments