Skip to content

Commit da193fe

Browse files
committed
Remove obsolete phpdocs from Configuration.php
1 parent fd99300 commit da193fe

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

src/Configuration.php

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,6 @@ public function getWritableFolders(): array
221221
return $this->writableFolders;
222222
}
223223

224-
/**
225-
* @return $this
226-
*/
227224
public function addWritableFolder(string $folder): self
228225
{
229226
$this->writableFolders[] = $folder;
@@ -243,7 +240,6 @@ public function setWritableFolders(array $writableFolders): void
243240

244241
/**
245242
* @param string[] $excludes
246-
* @return $this
247243
*/
248244
public function setDeployExclude(array $excludes): self
249245
{
@@ -254,9 +250,6 @@ public function setDeployExclude(array $excludes): self
254250
return $this;
255251
}
256252

257-
/**
258-
* @return $this
259-
*/
260253
public function addDeployExclude(string $exclude): self
261254
{
262255
$this->deployExclude[] = $exclude;
@@ -281,7 +274,6 @@ public function getBuildCommands(): array
281274

282275
/**
283276
* @param Command[] $buildCommands
284-
* @return $this
285277
*/
286278
public function setBuildCommands(array $buildCommands): self
287279
{
@@ -292,10 +284,6 @@ public function setBuildCommands(array $buildCommands): self
292284
return $this;
293285
}
294286

295-
/**
296-
* @param Command $command
297-
* @return $this
298-
*/
299287
public function addBuildCommand(Command $command): self
300288
{
301289
$this->buildCommands[] = $command;
@@ -312,7 +300,6 @@ public function getDeployCommands(): array
312300

313301
/**
314302
* @param DeployCommand[] $deployCommands
315-
* @return $this
316303
*/
317304
public function setDeployCommands($deployCommands): self
318305
{
@@ -323,9 +310,6 @@ public function setDeployCommands($deployCommands): self
323310
return $this;
324311
}
325312

326-
/**
327-
* @return $this
328-
*/
329313
public function addDeployCommand(DeployCommand $command): self
330314
{
331315
$this->deployCommands[] = $command;
@@ -353,9 +337,6 @@ public function setAfterDeployTasks($afterDeployTasks): self
353337
return $this;
354338
}
355339

356-
/**
357-
* @return $this
358-
*/
359340
public function addAfterDeployTask(TaskConfigurationInterface $taskConfig): self
360341
{
361342
$this->afterDeployTasks[] = $taskConfig;
@@ -382,25 +363,16 @@ public function setPublicFolder(string $publicFolder): void
382363
$this->publicFolder = $publicFolder;
383364
}
384365

385-
/**
386-
* @return array
387-
*/
388366
public function getPostInitializeCallbacks(): array
389367
{
390368
return $this->postInitializeCallbacks;
391369
}
392370

393-
/**
394-
* @param array $callbacks
395-
*/
396371
public function setPostInitializeCallbacks(array $callbacks): void
397372
{
398373
$this->postInitializeCallbacks = $callbacks;
399374
}
400375

401-
/**
402-
* @param callable $callback
403-
*/
404376
public function addPostInitializeCallback(callable $callback)
405377
{
406378
$this->postInitializeCallbacks[] = $callback;

0 commit comments

Comments
 (0)