Browse Source

Update Model.php

fixed comment spacing
Pafu Inlu 12 years ago
parent
commit
08cef539f9
1 changed files with 6 additions and 6 deletions
  1. 6 6
      lib/Cake/Model/Model.php

+ 6 - 6
lib/Cake/Model/Model.php

@@ -1497,13 +1497,13 @@ class Model extends Object implements CakeEventListener {
 		}
 		return $this->data;
 	}
-	
+
 /**
-* This function is a convenient wrapper class to create(false) and, as the name suggests, clears the id, data, and validation errors.
-*
-* @return always boolean TRUE upon success
-* @see Model::create()
-*/
+ * This function is a convenient wrapper class to create(false) and, as the name suggests, clears the id, data, and validation errors.
+ *
+ * @return always boolean TRUE upon success
+ * @see Model::create()
+ */
 	public function clear() {
 		$this->create(false);
 		return true;