1
0
Fork 0
nc_ext_dav_push/lib/Transport/Transport.php
Jonathan Treffler d09254523f fix indentation
2024-04-05 20:31:48 +02:00

17 lines
No EOL
225 B
PHP

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