Skip to content

Commit 29d52ff

Browse files
committed
Removed empty configure methods
1 parent deac671 commit 29d52ff

File tree

4 files changed

+0
-16
lines changed

4 files changed

+0
-16
lines changed

code_samples/api/public_php_api/src/Command/AddLanguageCommand.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ public function __construct(LanguageService $languageService, UserService $userS
2828
parent::__construct();
2929
}
3030

31-
protected function configure(): void
32-
{
33-
}
34-
3531
protected function execute(InputInterface $input, OutputInterface $output): int
3632
{
3733
$user = $this->userService->loadUserByLogin('admin');

code_samples/api/public_php_api/src/Command/FindUrlCommand.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ public function __construct(URLService $URLService, UserService $userService, Pe
3131
parent::__construct();
3232
}
3333

34-
protected function configure(): void
35-
{
36-
}
37-
3834
protected function execute(InputInterface $input, OutputInterface $output): int
3935
{
4036
$user = $this->userService->loadUserByLogin('admin');

code_samples/api/public_php_api/src/Command/FindWithAggregationCommand.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ public function __construct(SearchService $searchService)
2424
parent::__construct();
2525
}
2626

27-
protected function configure(): void
28-
{
29-
}
30-
3127
protected function execute(InputInterface $input, OutputInterface $output): int
3228
{
3329
$query = new LocationQuery();

code_samples/api/public_php_api/src/Command/SegmentCommand.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ public function __construct(SegmentationService $segmentationService, UserServic
3232
parent::__construct();
3333
}
3434

35-
protected function configure(): void
36-
{
37-
}
38-
3935
protected function execute(InputInterface $input, OutputInterface $output): int
4036
{
4137
$user = $this->userService->loadUserByLogin('admin');

0 commit comments

Comments
 (0)