Skip to content

Commit

Permalink
Revert incorrect changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Nov 24, 2020
1 parent 178c17f commit daf8849
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Core/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ function user_error (string $message, int $error_level = E_USER_NOTICE): bool
* <i>error_handler</i> will be called for every error
* regardless to the setting of the error_reporting setting.
* </p>
* @return void a string containing the previously defined error handler (if any). If
* @return callable|null a string containing the previously defined error handler (if any). If
* the built-in error handler is used null is returned. null is also returned
* in case of an error such as an invalid callback. If the previous error handler
* was a class method, this function will return an indexed array with the class
Expand Down Expand Up @@ -699,7 +699,7 @@ function restore_error_handler (): bool
* was thrown.
* NULL may be passed instead, to reset this handler to its default state.
* </p>
* @return void the name of the previously defined exception handler, or null on error. If
* @return callable|null the name of the previously defined exception handler, or null on error. If
* no previous handler was defined, null is also returned.
*/
function set_exception_handler (?callable $callback)
Expand Down
2 changes: 1 addition & 1 deletion dom/dom_c.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class DOMNode {
* The namespace URI of this node, or NULL if it is unspecified.
* @link https://php.net/manual/en/class.domnode.php#domnode.props.namespaceuri
*/
public $namespace;
public $namespaceURI;

/**
* @var string|null
Expand Down

0 comments on commit daf8849

Please sign in to comment.