Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0771ab62 authored by theronakpatel's avatar theronakpatel
Browse files

cs fixer

parent f45fe4da
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ class AccountController extends Controller {
	 */
	private function validateInput(string $inputName, string $value, ?int $maxLength = null) : ?string {
		if ($value === '') {
			return "$inputName is required.";
			return ucwords($inputName)." is required.";
		}
	
		if ($maxLength !== null && strlen($value) > $maxLength) {