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

17 lines
252 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace OCA\DavPush\Transport;
abstract class Transport {
protected $id;
public function getId() {
return $this->id;
}
public function getAdditionalInformation() {
return [];
}
}