Skip to content

Commit

Permalink
Merge pull request #8 from slovensko-digital/bugfix/response-headers
Browse files Browse the repository at this point in the history
fix variable visibility
  • Loading branch information
DominikBohucak authored Oct 2, 2023
2 parents 4c24248 + a4ea89f commit e154d84
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application/src/Handler/IssueHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class IssueHandler extends AbstractHandler
{
private string $issueClassName = AtlassianIdeaModel::class;
protected string $issueClassName = AtlassianIdeaModel::class;

public function getFilesFromRequest(ServerRequestInterface $request): array
{
Expand Down
2 changes: 1 addition & 1 deletion application/src/Handler/SendIdeaHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

final class SendIdeaHandler extends IssueHandler
{
private string $issueClassName = AtlassianIdeaModel::class;
protected string $issueClassName = AtlassianIdeaModel::class;
}
2 changes: 1 addition & 1 deletion application/src/Handler/SendProblemHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

final class SendProblemHandler extends IssueHandler
{
private string $issueClassName = AtlassianProblemModel::class;
protected string $issueClassName = AtlassianProblemModel::class;
}

0 comments on commit e154d84

Please sign in to comment.