Completed
Push — master ( 827100...0aed89 )
by Vladimir
02:24
created
src/Object/Website.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,6 @@  discard block
 block discarded – undo
106 106
     /**
107 107
      * Compile the website.
108 108
      *
109
-     * @param bool $cleanDirectory Clean the target directing before rebuilding
110 109
      * @param bool $tracking       Whether or not to keep track of files as they're compiled to save time in 'watch'
111 110
      */
112 111
     public function build ($tracking = false)
@@ -304,11 +303,17 @@  discard block
 block discarded – undo
304 303
         $this->noClean = $noClean;
305 304
     }
306 305
 
306
+    /**
307
+     * @param string $filePath
308
+     */
307 309
     private function creationWatcher ($filePath)
308 310
     {
309 311
         $this->output->writeln(sprintf("File creation detected: %s", $filePath));
310 312
     }
311 313
 
314
+    /**
315
+     * @param string $filePath
316
+     */
312 317
     private function modificationWatcher ($filePath)
313 318
     {
314 319
         $this->output->writeln(sprintf("File change detected: %s", $filePath));
Please login to merge, or discard this patch.