server/src/app/Facades/GuzzleFacade.php
author ymh <ymh.work@gmail.com>
Thu, 16 Nov 2017 16:31:09 +0100
changeset 554 f28a539ba106
parent 139 8d688175513a
permissions -rw-r--r--
small vagrant correction for removing ansible warning + create new version

<?php
namespace CorpusParole\Facades;

use Illuminate\Support\Facades\Facade;

class GuzzleFacade extends Facade {

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

}