Completed
Push — master ( 827100...0aed89 )
by Vladimir
02:24
created
src/Twig/TextFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Returns a list of filters.
17 17
      *
18
-     * @return array
18
+     * @return Twig_SimpleFilter[]
19 19
      */
20 20
     public function getFilters()
21 21
     {
Please login to merge, or discard this patch.
src/Manager/DataManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * Get all of the DataItems and DataSets in this manager
34 34
      *
35
-     * @return array
35
+     * @return string
36 36
      */
37 37
     public function getDataItems ()
38 38
     {
Please login to merge, or discard this patch.
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.