-
-
Notifications
You must be signed in to change notification settings - Fork 159
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
Automatically regenerate the files #264
Conversation
915c5fd
to
6b2bcf7
Compare
79eca2e
to
9f54316
Compare
f32e96d
to
f442b8f
Compare
52975b6
to
43aee4d
Compare
43aee4d
to
975474d
Compare
e2cf66c
to
3c42bc2
Compare
3c42bc2
to
5da53ec
Compare
5da53ec
to
0081656
Compare
c1076ca
to
2e90cb3
Compare
56f7746
to
96481be
Compare
96481be
to
8d07b3d
Compare
ea4fc80
to
6cb8a1c
Compare
5573a25
to
f5c31c9
Compare
0bcbb20
to
0bda707
Compare
274b37f
to
96362e3
Compare
c79b822
to
2c2bb00
Compare
2500c40
to
b4874a9
Compare
327a1df
to
082abf8
Compare
082abf8
to
6ad756d
Compare
generated/dom.php
Outdated
* as a native DOMElement node. | ||
* | ||
* @param \SimpleXMLElement $node The SimpleXMLElement node. | ||
* @return \DOMElement|false The DOMElement node added. |
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.
The |false
doesn't match the actual return type
$result = \finfo_open($flags, $magic_database); | ||
}else { | ||
$result = \finfo_open($flags); | ||
} |
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.
This if-else is not necessary.
Passing null or an empty string will be equivalent to the default value.
'solr_get_version', | ||
'sort', | ||
'spl_autoload_register', |
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.
Not sure why this is deleted. The function still exists in PHP8.
https://www.php.net/manual/en/function.spl-autoload-register.php
generated/spl.php
Outdated
* @throws SplException | ||
* | ||
*/ | ||
function spl_autoload_register(callable $autoload_function = null, bool $throw = true, bool $prepend = false): void |
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.
Not sure why this has been deleted.. it's still a function on PHP 8
Automated changes by create-pull-request GitHub action