server/src/app/Facades/GuzzleFacade.php
author ymh <ymh.work@gmail.com>
Mon, 31 Oct 2016 14:24:23 +0100
changeset 386 c731ab9b934d
parent 139 8d688175513a
permissions -rw-r--r--
implement first version of sparql client interface

<?php
namespace CorpusParole\Facades;

use Illuminate\Support\Facades\Facade;

class GuzzleFacade extends Facade {

    protected static function getFacadeAccessor() {
        return 'Guzzle';
    }

}