Skip to content

Commit

Permalink
Fixed codding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
norberttech committed Aug 16, 2024
1 parent d66b2d3 commit 443c482
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ public function __construct(private readonly array $data)
{
}

public function path() : string
{
return $this->data['repository_path'] . '/' . $this->data['name'];
}

public function data() : array
{
return $this->data;
Expand Down Expand Up @@ -70,6 +65,11 @@ public function name() : string
return $this->data['name'];
}

public function path() : string
{
return $this->data['repository_path'] . '/' . $this->data['name'];
}

public function slug() : string
{
return $this->data['slug'];
Expand Down

0 comments on commit 443c482

Please sign in to comment.