✏️ 正在编辑: Account.php
路径:
/srv/systems_dir/yuppiecred/vendor/marciodojr/autentique/src/Resource/Account.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * @author Márcio Dias <marciojr91@gmail.com> * @license https://github.com/marciodojr/autentique/blob/master/LICENSE (MIT License) */ namespace Mdojr\Autentique\Resource; /** * This class allows account manipulation. */ final class Account extends AbstractResource { /** * @var string api path for account info. */ const PATH = 'pessoas/me.json'; /** * Returns account information. * * @return \stdClass account information or empty string. * * @see https://autentique.docs.apiary.io/#reference/0/contas/informacoes-de-uma-conta. */ public function info() { $result = $this->get(self::PATH); return $result; } }
💾 保存文件
← 返回文件管理器