Created
October 20, 2016 16:17
-
-
Save zeroc0d3/f647c928f8426b5d5cd23d8a447324f7 to your computer and use it in GitHub Desktop.
Load Guzzle library in CodeIgniter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
class Guzzle | |
{ | |
public function __construct() | |
{ | |
require_once APPPATH . 'third_party/guzzle/autoloader.php'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment