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

View File

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