Add PHPDoc to delete method in Eloquent.

This commit is contained in:
Taylor Otwell 2011-06-17 13:38:16 -07:00
parent 43f196878c
commit 8c0dfffa34
1 changed files with 3 additions and 0 deletions

View File

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