Completed
Pull Request — master (#291)
by Robert
02:00
created
lib/Db/Card.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,9 @@
 block discarded – undo
59 59
 	}
60 60
 
61 61
 	public function getDuedate() {
62
-		if($this->duedate === null)
63
-			return null;
62
+		if($this->duedate === null) {
63
+					return null;
64
+		}
64 65
 		$dt = new DateTime($this->duedate);
65 66
 		return $dt->format('c');
66 67
 	}
Please login to merge, or discard this patch.