From 81c8b22b36731f3113ef0b5622a19551e1899fb9 Mon Sep 17 00:00:00 2001 From: marco Date: Thu, 13 Aug 2015 18:03:36 +0200 Subject: [PATCH] Fix indentation. --- lib/Models/CustomValidator.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Models/CustomValidator.php b/lib/Models/CustomValidator.php index 04ef02eda2..dc02ba39a0 100644 --- a/lib/Models/CustomValidator.php +++ b/lib/Models/CustomValidator.php @@ -7,10 +7,11 @@ class CustomValidator { } function init() { - $this->validator->addValidator('isString', function ($val) { + $this->validator + ->addValidator('isString', function ($val) { return is_string($val); }); return $this->validator; } -} \ No newline at end of file +}