streams/Zotlabs/Storage/ZotOauth2Pdo.php

14 lines
169 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Storage;
2021-12-02 22:33:36 +00:00
use OAuth2\Storage\Pdo;
2021-12-03 03:01:39 +00:00
class ZotOauth2Pdo extends Pdo
{
public function getConfig()
{
2021-12-03 03:01:39 +00:00
return $this->config;
}
}