PHP code example of impulzo / rest_client_service

1. Go to this page and download the library: Download impulzo/rest_client_service library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

impulzo / rest_client_service example snippets


    //Inyect Dependency
    public function methodName(RestClient $service){
      ....
    }
    
    //or
    
    //Create Class
    public function methodName(){
      $service = new RestClient();
    }
  

    $service->post($url, $data , $header);