From d2fdfc77f7a9485548869414d4377cd6848fe339 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 21 Aug 2016 17:22:04 +0200 Subject: Improve coding style for return statements that only check one condition Signed-off-by: Florian Pritz --- application/models/mfile.php | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'application/models/mfile.php') diff --git a/application/models/mfile.php b/application/models/mfile.php index 748d187a3..4b14f1bf5 100644 --- a/application/models/mfile.php +++ b/application/models/mfile.php @@ -64,11 +64,7 @@ class Mfile extends CI_Model { ->limit(1) ->get(); - if ($query->num_rows() == 1) { - return true; - } else { - return false; - } + return $query->num_rows() == 1; } function get_filedata($id) @@ -195,11 +191,7 @@ class Mfile extends CI_Model { ->limit(1) ->get(); - if ($query->num_rows() == 0) { - return true; - } else { - return false; - } + return $query->num_rows() == 0; } public function delete_by_user($userid) -- cgit v1.2.3-24-g4f1b