File "AccountResource.php"
Full Path: /home/cananyalcin/public_html/core/core/lib/coinbase/src/Resource/AccountResource.php
File size: 265 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Coinbase\Wallet\Resource;
trait AccountResource
{
public function getAccountId()
{
if ($resourcePath = $this->getResourcePath()) {
$parts = explode('/', $resourcePath);
return $parts[3];
}
}
}