@@ -205,6 +205,9 @@ |
||
| 205 | 205 | return $keyList; |
| 206 | 206 | } |
| 207 | 207 | |
| 208 | + /** |
|
| 209 | + * @param TList $keyList |
|
| 210 | + */ |
|
| 208 | 211 | protected function setKeyList($keyList) |
| 209 | 212 | { |
| 210 | 213 | $this->getCache()->set($this->getKeyListId(), $keyList); |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | public function getID(); |
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | - * @return TSqlMapStatement The SQL statment used by this TMappedStatement. |
|
| 26 | + * @return \Prado\Data\SqlMap\Configuration\TSqlMapStatement The SQL statment used by this TMappedStatement. |
|
| 27 | 27 | */ |
| 28 | 28 | public function getStatement(); |
| 29 | 29 | |
@@ -39,5 +39,9 @@ |
||
| 39 | 39 | public function setKeys($value){ $this->_keys = $value; } |
| 40 | 40 | |
| 41 | 41 | public function getMethod(){ return $this->_method; } |
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * @param integer $value |
|
| 45 | + */ |
|
| 42 | 46 | public function setMethod($value){ $this->_method = $value; } |
| 43 | 47 | } |
| 44 | 48 | \ No newline at end of file |
@@ -24,6 +24,9 @@ |
||
| 24 | 24 | private $_parameterObject; |
| 25 | 25 | private $_list; |
| 26 | 26 | |
| 27 | + /** |
|
| 28 | + * @param \ArrayAccess $list |
|
| 29 | + */ |
|
| 27 | 30 | public function __construct($result, $parameter, &$list) |
| 28 | 31 | { |
| 29 | 32 | $this->_resultObject = $result; |
@@ -67,7 +67,8 @@ discard block |
||
| 67 | 67 | /** |
| 68 | 68 | * Creates the DB connection. |
| 69 | 69 | * @param string the module ID for TDataSourceConfig |
| 70 | - * @return TDbConnection the created DB connection |
|
| 70 | + * @param string $connectionID |
|
| 71 | + * @return \Prado\Data\TDbConnection the created DB connection |
|
| 71 | 72 | * @throws TConfigurationException if module ID is invalid or empty |
| 72 | 73 | */ |
| 73 | 74 | protected function createDbConnection($connectionID) |
@@ -192,6 +193,7 @@ discard block |
||
| 192 | 193 | |
| 193 | 194 | /** |
| 194 | 195 | * Update the catalogue last modified time. |
| 196 | + * @param string $variant |
|
| 195 | 197 | * @return boolean true if updated, false otherwise. |
| 196 | 198 | */ |
| 197 | 199 | private function updateCatalogueTime($cat_id, $variant) |
@@ -30,6 +30,8 @@ |
||
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * @param mixed the data to be bound to this object |
| 33 | + * @param Data\ActiveRecord\TActiveRecord $value |
|
| 34 | + * @return void |
|
| 33 | 35 | */ |
| 34 | 36 | public function setData($value); |
| 35 | 37 | } |
| 36 | 38 | \ No newline at end of file |
@@ -25,6 +25,7 @@ discard block |
||
| 25 | 25 | /** |
| 26 | 26 | * Initializes the module. |
| 27 | 27 | * @param TXmlElement the configuration for the module |
| 28 | + * @return void |
|
| 28 | 29 | */ |
| 29 | 30 | public function init($config); |
| 30 | 31 | /** |
@@ -33,6 +34,7 @@ discard block |
||
| 33 | 34 | public function getID(); |
| 34 | 35 | /** |
| 35 | 36 | * @param string ID of the module |
| 37 | + * @return void |
|
| 36 | 38 | */ |
| 37 | 39 | public function setID($id); |
| 38 | 40 | } |
| 39 | 41 | \ No newline at end of file |
@@ -25,6 +25,7 @@ discard block |
||
| 25 | 25 | /** |
| 26 | 26 | * Initializes the service. |
| 27 | 27 | * @param TXmlElement the configuration for the service |
| 28 | + * @return void |
|
| 28 | 29 | */ |
| 29 | 30 | public function init($config); |
| 30 | 31 | /** |
@@ -33,6 +34,7 @@ discard block |
||
| 33 | 34 | public function getID(); |
| 34 | 35 | /** |
| 35 | 36 | * @param string ID of the service |
| 37 | + * @return void |
|
| 36 | 38 | */ |
| 37 | 39 | public function setID($id); |
| 38 | 40 | /** |
@@ -41,10 +43,12 @@ discard block |
||
| 41 | 43 | public function getEnabled(); |
| 42 | 44 | /** |
| 43 | 45 | * @param boolean whether the service is enabled |
| 46 | + * @return void |
|
| 44 | 47 | */ |
| 45 | 48 | public function setEnabled($value); |
| 46 | 49 | /** |
| 47 | 50 | * Runs the service. |
| 51 | + * @return void |
|
| 48 | 52 | */ |
| 49 | 53 | public function run(); |
| 50 | 54 | } |
| 51 | 55 | \ No newline at end of file |
@@ -31,6 +31,7 @@ |
||
| 31 | 31 | /** |
| 32 | 32 | * Saves state into a persistent storage. |
| 33 | 33 | * @param mixed the state to be saved |
| 34 | + * @return void |
|
| 34 | 35 | */ |
| 35 | 36 | public function save($state); |
| 36 | 37 | } |
| 37 | 38 | \ No newline at end of file |