Skip to content

Commit

Permalink
fix use colon instead of extends
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Mar 8, 2024
1 parent a8c620e commit 1503aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Generator/CSharp.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected function writeStruct(Code\Name $name, array $properties, ?string $exte
}

if (!empty($extends)) {
$code.= ' extends ' . $extends;
$code.= ' : ' . $extends;
}

$code.= "\n";
Expand Down

0 comments on commit 1503aaa

Please sign in to comment.