Skip to content

Commit

Permalink
Merge pull request #20 from ray-di/ph8.3
Browse files Browse the repository at this point in the history
Enable PHP 8.3 compat
  • Loading branch information
koriym authored Jan 2, 2024
2 parents f29fbd5 + 0d85e87 commit e3beaa7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- '8.0'
- '8.1'
- '8.2'
- '8.3'
dependencies:
- lowest
- highest
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) <2021-2023> <Akihito Koriyama>
Copyright (c) <2021-2024> <Akihito Koriyama>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/Php73BcSerializableTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final public function serialize()
*
* {@inheritDoc}
*/
final public function unserialize($serializedData)
final public function unserialize($serializedData): void // phpcs:ignore SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingAnyTypeHint
{
$array = unserialize($serializedData);
$this->__unserialize($array); // @phpstan-ignore-line
Expand Down

0 comments on commit e3beaa7

Please sign in to comment.