Completed
Pull Request — master (#45)
by Vladimir
02:30
created
src/allejo/stakx/Website.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -349,6 +349,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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));
Please login to merge, or discard this patch.
src/allejo/stakx/Configuration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/allejo/stakx/Exception/RecursiveConfigurationException.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/allejo/stakx/System/Folder.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/allejo/stakx/Service.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
         return self::$parameters[$key];
17 17
     }
18 18
 
19
+    /**
20
+     * @param string $key
21
+     */
19 22
     public static function setParameter($key, $value)
20 23
     {
21 24
         self::$parameters[$key] = $value;
Please login to merge, or discard this patch.