D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
stevebauman
/
location
/
src
/
Facades
/
Filename :
Location.php
back
Copy
<?php namespace Stevebauman\Location\Facades; use Illuminate\Support\Facades\Facade; /** * @method static \Stevebauman\Location\Position|bool get(string $ip = null) * @method static void setDriver(\Stevebauman\Location\Drivers\Driver $driver) * * @see \Stevebauman\Location\Location */ class Location extends Facade { /** * The IoC key accessor. * * @return string */ protected static function getFacadeAccessor() { return 'location'; } }