-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs #19935
base: master
Are you sure you want to change the base?
Docs #19935
Conversation
arshidkv12
commented
Aug 22, 2023
Q | A |
---|---|
Is bugfix? | ❌ |
New feature? | ❌ |
Breaks BC? | ❌ |
PR Summary
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #19935 +/- ##
===========================================
- Coverage 48.91% 15.60% -33.32%
===========================================
Files 445 445
Lines 42810 42585 -225
===========================================
- Hits 20941 6645 -14296
- Misses 21869 35940 +14071 ☔ View full report in Codecov by Sentry. |
@@ -1721,6 +1721,7 @@ public function extraFields() | |||
* This method is required by the SPL interface [[\ArrayAccess]]. | |||
* It is implicitly called when you use something like `unset($model[$offset])`. | |||
* @param mixed $offset the offset to unset element | |||
* @return null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That doesn't look good since there's no return
in the method.
@@ -47,7 +47,7 @@ class ServeController extends Controller | |||
* | |||
* @param string $address address to serve on. Either "host" or "host:port". | |||
* | |||
* @return int | |||
* @return void|int |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no such thing as void|null
- it is either a void
or int|null