1
0
Fork 0
nc_ext_dav_push/lib/Transport/Transport.php

17 lines
225 B
PHP
Raw Normal View History

<?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:30:30 +02:00
public function getId() {
return $this->id;
}
2024-04-05 20:30:30 +02:00
public function getAdditionalInformation() {
return [];
}
}