We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 778956c commit b22748dCopy full SHA for b22748d
Facade/Postcode.php
@@ -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