Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhall17 authored and actions-user committed Sep 11, 2020
1 parent 9476bc9 commit 250ccd1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions src/Requests/StoreRecurrence.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
class StoreRecurrence extends PersistResource
{
protected $persistAttributes = [
"type" => "nullable|integer|in:1,2,3",
"repeat_interval" => "nullable|integer",
"weekly_days" => "nullable|string",
"monthly_day" => "nullable|numeric|between:1,31",
"monthly_week" => "nullable|numeric|in:-1,1,2,3,4",
"monthly_week_day" => "nullable|integer|in:1,2,3,4,5,6,7",
"end_times" => "nullable|numeric|max:50|exclude_unless:end_date_time,null",
"end_date_time" => "nullable|date|exclude_unless:end_times,null",
"type" => "nullable|integer|in:1,2,3",
"repeat_interval" => "nullable|integer",
"weekly_days" => "nullable|string",
"monthly_day" => "nullable|numeric|between:1,31",
"monthly_week" => "nullable|numeric|in:-1,1,2,3,4",
"monthly_week_day" => "nullable|integer|in:1,2,3,4,5,6,7",
"end_times" => "nullable|numeric|max:50|exclude_unless:end_date_time,null",
"end_date_time" => "nullable|date|exclude_unless:end_times,null",
];
}
16 changes: 8 additions & 8 deletions src/Requests/UpdateRecurrence.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
class UpdateRecurrence extends PersistResource
{
protected $persistAttributes = [
"type" => "nullable|integer|in:1,2,3",
"repeat_interval" => "nullable|integer",
"weekly_days" => "nullable|string",
"monthly_day" => "nullable|numeric|between:1,31",
"monthly_week" => "nullable|numeric|in:-1,1,2,3,4",
"monthly_week_day" => "nullable|integer|in:1,2,3,4,5,6,7",
"end_times" => "nullable|numeric|max:50|exclude_unless:end_date_time,null",
"end_date_time" => "nullable|date|exclude_unless:end_times,null"
"type" => "nullable|integer|in:1,2,3",
"repeat_interval" => "nullable|integer",
"weekly_days" => "nullable|string",
"monthly_day" => "nullable|numeric|between:1,31",
"monthly_week" => "nullable|numeric|in:-1,1,2,3,4",
"monthly_week_day" => "nullable|integer|in:1,2,3,4,5,6,7",
"end_times" => "nullable|numeric|max:50|exclude_unless:end_date_time,null",
"end_date_time" => "nullable|date|exclude_unless:end_times,null",
];
}

0 comments on commit 250ccd1

Please sign in to comment.