Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Apr 25, 2023
1 parent a20c83d commit adc21e6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/Resources/config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,5 @@

->alias(VenueService::class, 'nucleos_setlistfm.service.venue')
->public()

;
;
};
3 changes: 2 additions & 1 deletion tests/App/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public function __construct()
public function registerBundles(): iterable
{
yield new FrameworkBundle();

yield new NucleosSetlistFmBundle();
}

Expand All @@ -55,7 +56,7 @@ protected function configureRoutes($routes): void
$routes
->add('test', '/test')
->controller(TestController::class)
;
;

return;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/DependencyInjection/ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function testDefaultOptions(): void
]]);

$expected = [
'api' => [
'api' => [
'key' => '0815',
'endpoint' => 'https://api.setlist.fm/rest/1.0/',
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class NucleosSetlistFmExtensionTest extends AbstractExtensionTestCase
public function testLoadDefault(): void
{
$this->load([
'api' => [
'api' => [
'key' => '0815',
],
'http' => [
Expand Down

0 comments on commit adc21e6

Please sign in to comment.