🔧
This commit is contained in:
10
vendor/theseer/tokenizer/CHANGELOG.md
vendored
10
vendor/theseer/tokenizer/CHANGELOG.md
vendored
@@ -2,6 +2,12 @@
|
||||
|
||||
All notable changes to Tokenizer are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
|
||||
|
||||
## [1.2.3] - 2024-03-03
|
||||
|
||||
### Changed
|
||||
|
||||
* Do not use implicitly nullable parameters
|
||||
|
||||
## [1.2.2] - 2023-11-20
|
||||
|
||||
### Fixed
|
||||
@@ -70,6 +76,10 @@ This release is now PHP 8.0 compliant.
|
||||
|
||||
Initial Release
|
||||
|
||||
[1.2.3]: https://github.com/theseer/tokenizer/compare/1.2.2...1.2.3
|
||||
[1.2.2]: https://github.com/theseer/tokenizer/compare/1.2.1...1.2.2
|
||||
[1.2.1]: https://github.com/theseer/tokenizer/compare/1.2.0...1.2.1
|
||||
[1.2.0]: https://github.com/theseer/tokenizer/compare/1.1.3...1.2.0
|
||||
[1.1.3]: https://github.com/theseer/tokenizer/compare/1.1.2...1.1.3
|
||||
[1.1.2]: https://github.com/theseer/tokenizer/compare/1.1.1...1.1.2
|
||||
[1.1.1]: https://github.com/theseer/tokenizer/compare/1.1.0...1.1.1
|
||||
|
||||
2
vendor/theseer/tokenizer/src/Tokenizer.php
vendored
2
vendor/theseer/tokenizer/src/Tokenizer.php
vendored
@@ -1,8 +1,6 @@
|
||||
<?php declare(strict_types = 1);
|
||||
namespace TheSeer\Tokenizer;
|
||||
|
||||
use function var_dump;
|
||||
|
||||
class Tokenizer {
|
||||
|
||||
/**
|
||||
|
||||
@@ -19,7 +19,7 @@ class XMLSerializer {
|
||||
*
|
||||
* @param NamespaceUri $xmlns
|
||||
*/
|
||||
public function __construct(NamespaceUri $xmlns = null) {
|
||||
public function __construct(?NamespaceUri $xmlns = null) {
|
||||
if ($xmlns === null) {
|
||||
$xmlns = new NamespaceUri('https://github.com/theseer/tokenizer');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user