@@ -349,6 +349,9 @@ discard block |
||
| 349 | 349 | $this->noClean = $noClean; |
| 350 | 350 | } |
| 351 | 351 | |
| 352 | + /** |
|
| 353 | + * @param string $filePath |
|
| 354 | + */ |
|
| 352 | 355 | private function creationWatcher($filePath) |
| 353 | 356 | { |
| 354 | 357 | $this->output->writeln(sprintf('File creation detected: %s', $filePath)); |
@@ -390,6 +393,9 @@ discard block |
||
| 390 | 393 | } |
| 391 | 394 | } |
| 392 | 395 | |
| 396 | + /** |
|
| 397 | + * @param string $filePath |
|
| 398 | + */ |
|
| 393 | 399 | private function modificationWatcher($filePath) |
| 394 | 400 | { |
| 395 | 401 | $this->output->writeln(sprintf('File change detected: %s', $filePath)); |
@@ -89,7 +89,7 @@ |
||
| 89 | 89 | /** |
| 90 | 90 | * @TODO 1.0.0 Remove support for 'base' in next major release; it has been replaced by 'baseurl' |
| 91 | 91 | * |
| 92 | - * @return mixed|null |
|
| 92 | + * @return string |
|
| 93 | 93 | */ |
| 94 | 94 | public function getBaseUrl() |
| 95 | 95 | { |
@@ -13,6 +13,9 @@ |
||
| 13 | 13 | { |
| 14 | 14 | private $import; |
| 15 | 15 | |
| 16 | + /** |
|
| 17 | + * @param string $import |
|
| 18 | + */ |
|
| 16 | 19 | public function __construct($import, $message = "", $code = 0, Exception $previous = null) |
| 17 | 20 | { |
| 18 | 21 | $this->import = $import; |
@@ -21,6 +21,9 @@ |
||
| 21 | 21 | protected $absolutePath; |
| 22 | 22 | protected $targetDirectories; |
| 23 | 23 | |
| 24 | + /** |
|
| 25 | + * @param string $folderPath |
|
| 26 | + */ |
|
| 24 | 27 | public function __construct($folderPath) |
| 25 | 28 | { |
| 26 | 29 | $this->fs = new Filesystem(); |