Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Baspa authored and github-actions[bot] committed Aug 26, 2024
1 parent c8451ba commit 2f9393c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ActualForecast.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ public function __toString(): string
{
return $this->toJson();
}
}
}
2 changes: 1 addition & 1 deletion src/Buienradar.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Buienradar

public function __construct()
{
$this->client = new Client();
$this->client = new Client;
}

/** @return array<string, mixed> */
Expand Down
2 changes: 1 addition & 1 deletion src/Forecast.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ public function __toString(): string
{
return $this->toJson();
}
}
}
2 changes: 1 addition & 1 deletion tests/ForecastTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use Baspa\Buienradar\Enum\MeasuringStation;

beforeEach(function () {
$this->buienradar = new Buienradar();
$this->buienradar = new Buienradar;
});

it('can get the forecast for a specific measurement station', function () {
Expand Down

0 comments on commit 2f9393c

Please sign in to comment.