Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Commit 6e5608c

Browse files
committed
Add missing __Override attributes
1 parent 2e0aaa6 commit 6e5608c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/CodegenClassConstant.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public function setTypef(
5858
return $this->setType(\vsprintf($format, $args));
5959
}
6060

61+
<<__Override>>
6162
public function appendToBuilder(HackBuilder $builder): HackBuilder {
6263
$value = $this->getValue();
6364
$abstract = $this->isAbstract();

src/CodegenConstant.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public function setTypef(
4949
return $this->setType(\vsprintf($format, $args));
5050
}
5151

52+
<<__Override>>
5253
public function appendToBuilder(HackBuilder $builder): HackBuilder {
5354
$value = $this->getValue();
5455
invariant($value !== null, 'constants must have a value');

src/CodegenTypeConstant.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public function setConstraintf(
5858
return $this;
5959
}
6060

61+
<<__Override>>
6162
public function appendToBuilder(HackBuilder $builder): HackBuilder {
6263
$value = $this->getValue();
6364
$abstract = $this->isAbstract();

0 commit comments

Comments
 (0)