From 1f02662748cad71564885cced07c9ef87eae3b15 Mon Sep 17 00:00:00 2001 From: ghost Date: Mon, 3 Jun 2024 23:17:51 +0300 Subject: [PATCH] add code highlight --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c58ad3b..114cf5c 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,7 @@ To simply interact with Kevacoin API, use PHP library, e.g. `composer require kevachat/kevacoin` -``` - +``` php // Connect kevacoin $client = new \Kevachat\Kevacoin\Client( $protocol, @@ -37,8 +36,8 @@ if ($meta = $client->kevaGet($namespace, '_CLITOR_IS_')) // Grab namespace records from blockchain if ($pieces = $client->kevaFilter($namespace)) { - // Implement your app logic - echo $reader->data($pieces); + // Implement your app logic + echo $reader->data($pieces); } } }