server/src/app/Facades/GuzzleFacade.php
author Chloe Laisne <chloe.laisne@gmail.com>
Sat, 15 Oct 2016 16:15:07 +0530
changeset 336 f076ddd29e13
parent 139 8d688175513a
permissions -rw-r--r--
Playlist scroll to show playing track in view always

<?php
namespace CorpusParole\Facades;

use Illuminate\Support\Facades\Facade;

class GuzzleFacade extends Facade {

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

}