Completed
Push — master ( 84905b...948707 )
by Jean-Christophe
01:52
created
Ubiquity/controllers/crud/CRUDController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -191,6 +191,9 @@
 block discarded – undo
191 191
 		return $this->getSingleton($this->crudFiles,"getFiles");
192 192
 	}
193 193
 	
194
+	/**
195
+	 * @param string $method
196
+	 */
194 197
 	private function getSingleton($value, $method) {
195 198
 		if (! isset ( $value )) {
196 199
 			$value = $this->$method ();
Please login to merge, or discard this patch.
Ubiquity/controllers/crud/CRUDHelper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@
 block discarded – undo
83 83
 		return OrmUtils::getKeyFields($instance);
84 84
 	}
85 85
 	
86
+	/**
87
+	 * @param string $class
88
+	 */
86 89
 	private static function getMultiWhere($ids, $class) {
87 90
 		$pk=OrmUtils::getFirstKey($class);
88 91
 		$ids=explode(",", $ids);
Please login to merge, or discard this patch.