Skip to content

Commit

Permalink
Create Facade
Browse files Browse the repository at this point in the history
Add Facade
  • Loading branch information
api-postcode authored Jun 12, 2017
1 parent 778956c commit b22748d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Facade/Postcode.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/*
* (c) Api Postcode <info@api-postcode.nl>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace ApiPostcode\Facade;

use Illuminate\Support\Facades\Facade;

/**
* Class Postcode
*/
class Postcode extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'api.postcode';
}
}

0 comments on commit b22748d

Please sign in to comment.