Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
Improve PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed Jul 24, 2023
1 parent f841bae commit 57bee38
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Model/Aliment.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function getNomIndexFr(): ?string {
}

/**
* {@inheritdoc}
* {@inheritDoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeAliment($this);
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Composition.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public function getTeneur(): ?string {
}

/**
* {@inheritdoc}
* {@inheritDoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeComposition($this);
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Constituant.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct() {
}

/**
* {@inheritdoc}
* {@inheritDoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeConstituant($this);
Expand Down
2 changes: 1 addition & 1 deletion src/Model/GroupeAliments.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function getNomFrSousSousGroupe(): ?string {
}

/**
* {@inheritdoc}
* {@inheritDoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeGroupeAliments($this);
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Source.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function getCitationRef(): ?string {
}

/**
* {@inheritdoc}
* {@inheritDoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeSource($this);
Expand Down

0 comments on commit 57bee38

Please sign in to comment.