Add facade file, fixes #1

This commit is contained in:
Ben Speakman 2015-03-14 16:02:53 +00:00
parent 0caa09c307
commit 3b668336f0

View file

@ -0,0 +1,9 @@
<?php namespace Cyberduck\LaravelWpApi\Facades;
use Illuminate\Support\Facades\Facade;
class WpApi extends Facade {
protected static function getFacadeAccessor() { return 'wp-api'; }
}