Skip to content

Commit b22748d

Browse files
authored
Create Facade
Add Facade
1 parent 778956c commit b22748d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Facade/Postcode.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
/*
3+
* (c) Api Postcode <info@api-postcode.nl>
4+
*
5+
* For the full copyright and license information, please view the LICENSE
6+
* file that was distributed with this source code.
7+
*/
8+
9+
namespace ApiPostcode\Facade;
10+
11+
use Illuminate\Support\Facades\Facade;
12+
13+
/**
14+
* Class Postcode
15+
*/
16+
class Postcode extends Facade
17+
{
18+
/**
19+
* Get the registered name of the component.
20+
*
21+
* @return string
22+
*/
23+
protected static function getFacadeAccessor()
24+
{
25+
return 'api.postcode';
26+
}
27+
}

0 commit comments

Comments
 (0)