We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ca9db5 commit c3a4a95Copy full SHA for c3a4a95
src/Domain/ValueObject/Id.php
@@ -19,7 +19,7 @@ abstract class Id extends ValueObject
19
*
20
* @param int $id
21
*/
22
- public function __construct(int $id)
+ final public function __construct(int $id)
23
{
24
parent::__construct($id);
25
src/Domain/ValueObject/Uuid.php
@@ -22,7 +22,7 @@ class Uuid extends ValueObject
* @param string $uuid
- public function __construct(string $uuid)
+ final public function __construct(string $uuid)
26
27
parent::__construct($uuid);
28
0 commit comments