Merge pull request #495 from schlessera/fix/php-remove-final-from-item-class

[PHP] Remove final keyword from Item class
This commit is contained in:
Emily Bache 2023-11-14 09:35:35 +00:00 committed by GitHub
commit 5fb60271e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ declare(strict_types=1);
namespace GildedRose; namespace GildedRose;
final class Item implements \Stringable class Item implements \Stringable
{ {
public function __construct( public function __construct(
public string $name, public string $name,