Completed
Push — autoload ( 4808d1...dcd67f )
by Fabio
60:18 queued 50:52
created
framework/Wsat/TWsatARGenerator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -207,6 +207,10 @@
 block discarded – undo
207 207
                 return $code;
208 208
         }
209 209
 
210
+        /**
211
+         * @param string $classname
212
+         * @param string $toString
213
+         */
210 214
         protected function generateClass($properties, $tablename, $classname, $toString)
211 215
         {
212 216
                 $props = implode("\n", $properties);
Please login to merge, or discard this patch.
framework/Wsat/TWsatScaffoldingGenerator.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -44,6 +44,10 @@  discard block
 block discarded – undo
44 44
 
45 45
     //---------------------------------------------------------------------
46 46
     // <editor-fold defaultstate="collapsed" desc="Page Generation">
47
+
48
+    /**
49
+     * @param integer $viewType
50
+     */
47 51
     public function generate($tableName, $viewType)
48 52
     {
49 53
         switch ($viewType)
@@ -141,6 +145,10 @@  discard block
 block discarded – undo
141 145
 // </editor-fold>
142 146
     //---------------------------------------------------------------------
143 147
     // <editor-fold defaultstate="collapsed" desc="Code Behind Generation">
148
+
149
+    /**
150
+     * @param string $classname
151
+     */
144 152
     private function generateClass($classname)
145 153
     {
146 154
         $date = date('Y-m-d h:i:s');
Please login to merge, or discard this patch.
framework/Data/Common/TDbTableColumn.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -136,6 +136,7 @@
 block discarded – undo
136 136
 	 * @param mixed Name of the PHP variable to bind to the SQL statement parameter
137 137
 	 * @param int SQL data type of the parameter
138 138
 	 * @param int length of the data type
139
+	 * @param string $name
139 140
 	 * @see http://www.php.net/manual/en/function.PDOStatement-bindParam.php
140 141
 	 */
141 142
 	public function bindParameter($name, &$value, $dataType=null, $length=null)
Please login to merge, or discard this patch.
framework/Data/SqlMap/Configuration/TParameterProperty.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -113,6 +113,7 @@
 block discarded – undo
113 113
 
114 114
 	/**
115 115
 	 * @param string button caption
116
+	 * @param string $value
116 117
 	 */
117 118
 	public function setButtonText($value)
118 119
 	{
Please login to merge, or discard this patch.
framework/TService.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -113,6 +113,7 @@
 block discarded – undo
113 113
 
114 114
 	/**
115 115
 	 * @param string button caption
116
+	 * @param string $value
116 117
 	 */
117 118
 	public function setButtonText($value)
118 119
 	{
Please login to merge, or discard this patch.
framework/Web/UI/ActiveControls/TActiveControlAdapter.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -113,6 +113,7 @@
 block discarded – undo
113 113
 
114 114
 	/**
115 115
 	 * @param string button caption
116
+	 * @param string $value
116 117
 	 */
117 118
 	public function setButtonText($value)
118 119
 	{
Please login to merge, or discard this patch.
framework/Web/UI/ActiveControls/TActiveDropDownList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 	/**
71 71
 	 * Javascript client class for this control.
72 72
 	 * This method overrides the parent implementation.
73
-	 * @return null no javascript class name.
73
+	 * @return string no javascript class name.
74 74
 	 */
75 75
 	protected function getClientClassName()
76 76
 	{
Please login to merge, or discard this patch.
framework/Web/UI/ActiveControls/TActiveImageButton.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -113,6 +113,7 @@
 block discarded – undo
113 113
 
114 114
 	/**
115 115
 	 * @param string button caption
116
+	 * @param string $value
116 117
 	 */
117 118
 	public function setButtonText($value)
118 119
 	{
Please login to merge, or discard this patch.
framework/Web/UI/JuiControls/TJuiSelectable.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -317,6 +317,9 @@
 block discarded – undo
317 317
 {
318 318
 	private $_template;
319 319
 
320
+	/**
321
+	 * @param string $template
322
+	 */
320 323
 	public function __construct($template)
321 324
 	{
322 325
 		$this->_template = $template;
Please login to merge, or discard this patch.