Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gammamatrix committed May 1, 2024
1 parent f9c49e9 commit ae83b85
Show file tree
Hide file tree
Showing 61 changed files with 605 additions and 602 deletions.
20 changes: 10 additions & 10 deletions src/Http/Requests/Backlog/CreateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class CreateRequest extends FormRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Board/EditRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class EditRequest extends FormRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Board/StoreRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class StoreRequest extends BaseStoreRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Board/UpdateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class UpdateRequest extends BaseUpdateRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Epic/CreateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class CreateRequest extends FormRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Epic/EditRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class EditRequest extends FormRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Epic/StoreRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class StoreRequest extends BaseStoreRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Epic/UpdateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class UpdateRequest extends BaseUpdateRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Flow/CreateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ class CreateRequest extends FormRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'cron' => ['boolean'],
'flagged' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Flow/EditRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ class EditRequest extends FormRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'cron' => ['boolean'],
'flagged' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Flow/StoreRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ class StoreRequest extends BaseStoreRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'cron' => ['boolean'],
'flagged' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Flow/UpdateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ class UpdateRequest extends BaseUpdateRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'cron' => ['boolean'],
'flagged' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Matrix/CreateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ class CreateRequest extends FormRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
20 changes: 10 additions & 10 deletions src/Http/Requests/Matrix/EditRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ class EditRequest extends FormRequest
'rank' => ['integer'],
'size' => ['integer'],
'matrix' => ['array'],
'x' => ['integer'],
'y' => ['integer'],
'z' => ['integer'],
'r' => ['float'],
'theta' => ['float'],
'rho' => ['float'],
'phi' => ['float'],
'elevation' => ['float'],
'latitude' => ['float'],
'longitude' => ['float'],
'x' => ['nullable', 'integer'],
'y' => ['nullable', 'integer'],
'z' => ['nullable', 'integer'],
'r' => ['nullable', 'numeric'],
'theta' => ['nullable', 'numeric'],
'rho' => ['nullable', 'numeric'],
'phi' => ['nullable', 'numeric'],
'elevation' => ['nullable', 'numeric'],
'latitude' => ['nullable', 'numeric'],
'longitude' => ['nullable', 'numeric'],
'active' => ['boolean'],
'canceled' => ['boolean'],
'closed' => ['boolean'],
Expand Down
Loading

0 comments on commit ae83b85

Please sign in to comment.