Completed
Pull Request — master (#30)
by San
02:55
created
sources/lib/DatabaseDataCollector.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@
 block discarded – undo
70 70
         $this->watch($name);
71 71
     }
72 72
 
73
+    /**
74
+     * @param string $name
75
+     */
73 76
     private function watch($name)
74 77
     {
75 78
         if ($this->stopwatch !== null) {
Please login to merge, or discard this patch.
sources/lib/PropertyInfo/Extractor/TypeExtractor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * Get the sql type of $property
61 61
      *
62
+     * @param string $property
62 63
      * @return string
63 64
      */
64 65
     private function getSqlType(Session $session, $model_name, $property)
@@ -72,6 +73,7 @@  discard block
 block discarded – undo
72 73
     /**
73 74
      * Get the corresponding php type of a $sql_type type
74 75
      *
76
+     * @param string $sql_type
75 77
      * @return string
76 78
      */
77 79
     private function getPommType(Session $session, $sql_type)
@@ -90,6 +92,7 @@  discard block
 block discarded – undo
90 92
     /**
91 93
      * Create a new Type for the $pomm_type type
92 94
      *
95
+     * @param string $pomm_type
93 96
      * @return Type
94 97
      */
95 98
     private function createPropertyType($pomm_type)
Please login to merge, or discard this patch.