Conversation
|
Important Review skippedToo many files! This PR contains 300 files, which is 150 over the limit of 150. ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (300)
You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
818c1f1 to
ac3096c
Compare
PILOS
|
||||||||||||||||||||||||||||
| Project |
PILOS
|
| Branch Review |
php-strict-type
|
| Run status |
|
| Run duration | 07m 57s |
| Commit |
|
| Committer | Samuel Weirich |
| View all properties for this run ↗︎ | |
| Test results | |
|---|---|
|
|
0
|
|
|
0
|
|
|
0
|
|
|
0
|
|
|
622
|
| View all changes introduced in this branch ↗︎ | |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #3032 +/- ##
=============================================
+ Coverage 96.28% 96.70% +0.42%
- Complexity 1912 1913 +1
=============================================
Files 266 445 +179
Lines 6600 12915 +6315
Branches 0 2078 +2078
=============================================
+ Hits 6355 12490 +6135
- Misses 245 425 +180 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
pizkaz
left a comment
There was a problem hiding this comment.
GL2 uses integer IDs for user, room and shared access.
| * GreenlightUser constructor. | ||
| */ | ||
| public function __construct($id, $provider, $name, $username, $social_uid, $email, $password_digest) | ||
| public function __construct(string $id, string $provider, string $name, ?string $username, ?string $social_uid, string $email, ?string $password_digest) |
There was a problem hiding this comment.
user.id is an integer in GL2
There was a problem hiding this comment.
room.id is an integer in GL2
| @@ -13,7 +15,7 @@ class GreenlightSharedAccess | |||
| /** | |||
| * GreenlightSharedAccess constructor. | |||
| */ | |||
| public function __construct($id, $room_id, $user_id) | |||
| public function __construct(string $id, string $room_id, string $user_id) | |||
There was a problem hiding this comment.
All these IDs are integer in GL2 but uuid in GL3
There was a problem hiding this comment.
room.id is integer in GL2 but uuid in GL3
There was a problem hiding this comment.
There is no room.deleted field in GL3. My bad, this is a result of copy&paste.
|
See pizkaz@3153dec |
# Conflicts: # app/Http/Controllers/api/v1/RecordingFormatController.php
90c5a4a to
7aeffbf
Compare
Type
Checklist
Changes
Other information
Should prevent undetected type issues in the future. Added pint rule to enforce header on all files.