Browse Source

Add PHPDoc to delete method in Eloquent.

Taylor Otwell 14 years ago
parent
commit
8c0dfffa34
1 changed files with 3 additions and 0 deletions
  1. 3 0
      system/db/eloquent.php

+ 3 - 0
system/db/eloquent.php

@@ -339,6 +339,9 @@ abstract class Eloquent {
 
 	/**
 	 * Delete a model from the database.
+	 *
+	 * @param  int  $id
+	 * @return int
 	 */
 	public function delete($id = null)
 	{