Skip to content

Commit

Permalink
Merge "REST: Fix constructor parameter name"
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins-bot authored and Gerrit Code Review committed Aug 3, 2023
2 parents a3f4998 + 3dbd534 commit 0bd1afc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class GetItemStatementsResponse {

private int $revisionId;

public function __construct( StatementList $serializedStatements, string $lastModified, int $revisionId ) {
$this->statements = $serializedStatements;
public function __construct( StatementList $statements, string $lastModified, int $revisionId ) {
$this->statements = $statements;
$this->lastModified = $lastModified;
$this->revisionId = $revisionId;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class GetPropertyStatementsResponse {

private int $revisionId;

public function __construct( StatementList $serializedStatements, string $lastModified, int $revisionId ) {
$this->statements = $serializedStatements;
public function __construct( StatementList $statements, string $lastModified, int $revisionId ) {
$this->statements = $statements;
$this->lastModified = $lastModified;
$this->revisionId = $revisionId;
}
Expand Down

0 comments on commit 0bd1afc

Please sign in to comment.