2024-04-05 20:26:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\DavPush\Transport;
|
|
|
|
|
|
|
|
abstract class Transport {
|
2024-04-05 20:30:30 +02:00
|
|
|
protected $id;
|
2024-04-05 20:26:15 +02:00
|
|
|
|
2024-04-05 20:30:30 +02:00
|
|
|
public function getId() {
|
|
|
|
return $this->id;
|
|
|
|
}
|
2024-04-05 20:26:15 +02:00
|
|
|
|
2024-04-05 20:30:30 +02:00
|
|
|
public function getAdditionalInformation() {
|
|
|
|
return [];
|
|
|
|
}
|
2024-04-05 20:26:15 +02:00
|
|
|
}
|