From 14366df3c4acb23e993940439331ba6cd8da7cea Mon Sep 17 00:00:00 2001 From: Knight Tan Date: Thu, 26 Oct 2017 09:18:36 +0800 Subject: [PATCH] align the rules for styleci --- .../IncidentUpdate/CreateIncidentUpdateCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Bus/Commands/IncidentUpdate/CreateIncidentUpdateCommand.php b/app/Bus/Commands/IncidentUpdate/CreateIncidentUpdateCommand.php index fed281c30..caa65a757 100644 --- a/app/Bus/Commands/IncidentUpdate/CreateIncidentUpdateCommand.php +++ b/app/Bus/Commands/IncidentUpdate/CreateIncidentUpdateCommand.php @@ -67,12 +67,12 @@ final class CreateIncidentUpdateCommand * @var string[] */ public $rules = [ - 'incident' => 'required', - 'status' => 'required|int|min:1|max:4', - 'message' => 'required|string', + 'incident' => 'required', + 'status' => 'required|int|min:1|max:4', + 'message' => 'required|string', 'component_id' => 'nullable|required_with:component_status|int', 'component_status' => 'nullable|required_with:component_id|int|min:0|max:4', - 'user' => 'required', + 'user' => 'required', ]; /**