diff --git a/README.md b/README.md index f1198d1..5515301 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ [![Latest Stable Version](https://poser.pugx.org/unicodeveloper/laravel-codepen/v/stable.svg)](https://packagist.org/packages/unicodeveloper/laravel-codepen) [![License](https://poser.pugx.org/unicodeveloper/laravel-codepen/license.svg)](LICENSE.md) +![](https://img.shields.io/badge/unicodeveloper-approved-brightgreen.svg) [![Build Status](https://img.shields.io/travis/unicodeveloper/laravel-codepen.svg)](https://travis-ci.org/unicodeveloper/laravel-codepen) -[![Quality Score](https://img.shields.io/scrutinizer/g/unicodeveloper/laravel-codepen.svg?style=flat-square)](https://scrutinizer-ci.com/g/unicodeveloper/laravel-codepen) [![Total Downloads](https://img.shields.io/packagist/dt/unicodeveloper/laravel-codepen.svg?style=flat-square)](https://packagist.org/packages/unicodeveloper/laravel-codepen) > Laravel 5 Package to work with Codepen. Very easy to use. Offers the use of Facades and Dependency Injection diff --git a/src/CodepenManager.php b/src/CodepenManager.php index 8bb66f1..902d500 100644 --- a/src/CodepenManager.php +++ b/src/CodepenManager.php @@ -2,21 +2,22 @@ namespace Unicodeveloper\Codepen; -use Illuminate\Support\Facades\Config; use GuzzleHttp\Client; +use Illuminate\Support\Facades\Config; + class CodepenManager { /** - * [$client description] - * @var [type] + * Instance of GuzzleHttp + * @var object */ protected $client; /** - * [$response description] - * @var [type] + * Data response + * @var object */ protected $response;