12-cactus/espinoso

View on GitHub
app/Facades/InstagramSearch.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php namespace App\Facades;
 
use Vinkla\Instagram\Instagram;
use Illuminate\Support\Facades\Facade;
 
/**
* Class InstagramSearch
* @see Instagram
*/
class InstagramSearch extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'InstagramSearch';
}
}