Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Jul 13, 2023
1 parent 9bde810 commit e517a71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion pint.json
Expand Up @@ -7,6 +7,9 @@
"strict": true
},
"no_superfluous_phpdoc_tags": false,
"php_unit_method_casing": false
"php_unit_method_casing": false,
"nullable_type_declaration_for_default_null_value": {
"use_nullable_type_declaration": true
}
}
}
2 changes: 1 addition & 1 deletion src/Xml/Document.php
Expand Up @@ -25,7 +25,7 @@ class Document extends BaseDocument
* @param string|null $base
* @return $this
*/
public function rebase(string $base = null): self
public function rebase(?string $base = null): self
{
$this->content = data_get($this->getOriginalContent(), $base);

Expand Down

0 comments on commit e517a71

Please sign in to comment.