Procházet zdrojové kódy

Merge branch 'master' of git.giaever.org:joachimmg/gogs-php-api-client

Joachim M. Giæver před 6 roky
rodič
revize
fe49d70893
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      README.md

+ 2 - 1
README.md

@@ -10,7 +10,7 @@ A guide on how to use will come shortly!
 
 Clone the repo. Set the `API_URL` and `API_TOKEN` in the index-file. 
 
-```php
+```
 
 $client =  new \Client\GogsAPI(API_URL, API_TOKEN);
 
@@ -22,4 +22,5 @@ $repos = $me->get("/repos")->load();
 // Loop through every repo
 for($repo = $repos->current(); $repo != false; $repo = $repos->next())
     var_dump($repo);
+```