2024-04-05 20:26:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\DavPush\PushTransports;
|
|
|
|
|
|
|
|
use OCA\DavPush\Transport\Transport;
|
|
|
|
|
|
|
|
class WebPushTransport extends Transport {
|
2024-04-05 20:30:30 +02:00
|
|
|
protected $id = "web-push";
|
2024-04-05 20:26:15 +02:00
|
|
|
}
|