* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace IPFS\Api; use IPFS\Annotation\Api as Endpoint; use IPFS\Command\Command; /** * @author Robert Schönthal * @autogenerated * @codeCoverageIgnore */ final class Refs implements Api { /** * List all local references. * * @Endpoint(name="refs:local") * * @return Command */ public function local(): Command { return new Command(__METHOD__, get_defined_vars()); } }