From 8c0dfffa34b4f2443e59faa5a8a5c70c62bedc0f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 17 Jun 2011 13:38:16 -0700 Subject: [PATCH] Add PHPDoc to delete method in Eloquent. --- system/db/eloquent.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/db/eloquent.php b/system/db/eloquent.php index 5a367da0..ac3162a6 100644 --- a/system/db/eloquent.php +++ b/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) {