Browse Source

chore: rename Index.php to ListWebhooks.php

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/45475/head
Côme Chilliet 1 year ago
committed by Côme Chilliet
parent
commit
35d5d90dc0
  1. 2
      apps/webhooks/appinfo/info.xml
  2. 2
      apps/webhooks/composer/composer/autoload_classmap.php
  3. 2
      apps/webhooks/composer/composer/autoload_static.php
  4. 2
      apps/webhooks/lib/Command/ListWebhooks.php

2
apps/webhooks/appinfo/info.xml

@ -24,7 +24,7 @@
</dependencies>
<commands>
<command>OCA\Webhooks\Command\Index</command>
<command>OCA\Webhooks\Command\ListWebhooks</command>
</commands>
<settings>

2
apps/webhooks/composer/composer/autoload_classmap.php

@ -9,7 +9,7 @@ return array(
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
'OCA\\Webhooks\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php',
'OCA\\Webhooks\\BackgroundJobs\\WebhookCall' => $baseDir . '/../lib/BackgroundJobs/WebhookCall.php',
'OCA\\Webhooks\\Command\\Index' => $baseDir . '/../lib/Command/Index.php',
'OCA\\Webhooks\\Command\\ListWebhooks' => $baseDir . '/../lib/Command/ListWebhooks.php',
'OCA\\Webhooks\\Controller\\WebhooksController' => $baseDir . '/../lib/Controller/WebhooksController.php',
'OCA\\Webhooks\\Db\\AuthMethod' => $baseDir . '/../lib/Db/AuthMethod.php',
'OCA\\Webhooks\\Db\\WebhookListener' => $baseDir . '/../lib/Db/WebhookListener.php',

2
apps/webhooks/composer/composer/autoload_static.php

@ -24,7 +24,7 @@ class ComposerStaticInitWebhooks
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
'OCA\\Webhooks\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
'OCA\\Webhooks\\BackgroundJobs\\WebhookCall' => __DIR__ . '/..' . '/../lib/BackgroundJobs/WebhookCall.php',
'OCA\\Webhooks\\Command\\Index' => __DIR__ . '/..' . '/../lib/Command/Index.php',
'OCA\\Webhooks\\Command\\ListWebhooks' => __DIR__ . '/..' . '/../lib/Command/ListWebhooks.php',
'OCA\\Webhooks\\Controller\\WebhooksController' => __DIR__ . '/..' . '/../lib/Controller/WebhooksController.php',
'OCA\\Webhooks\\Db\\AuthMethod' => __DIR__ . '/..' . '/../lib/Db/AuthMethod.php',
'OCA\\Webhooks\\Db\\WebhookListener' => __DIR__ . '/..' . '/../lib/Db/WebhookListener.php',

2
apps/webhooks/lib/Command/Index.php → apps/webhooks/lib/Command/ListWebhooks.php

@ -15,7 +15,7 @@ use OCA\Webhooks\Db\WebhookListenerMapper;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Index extends Base {
class ListWebhooks extends Base {
public function __construct(
private WebhookListenerMapper $mapper,
) {
Loading…
Cancel
Save