We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a6db0b commit e146a7eCopy full SHA for e146a7e
composer.json
@@ -47,7 +47,10 @@
47
"laravel": {
48
"providers": [
49
"QCod\\AppSettings\\AppSettingsServiceProvider"
50
- ]
+ ],
51
+ "aliases": {
52
+ "Setting": "QCod\\AppSettings\\Facade"
53
+ }
54
}
55
},
56
"scripts": {
src/Facade.php
@@ -0,0 +1,14 @@
1
+<?php
2
+
3
+namespace QCod\AppSettings;
4
5
+class Facade extends \Illuminate\Support\Facades\Facade
6
+{
7
+ /**
8
+ * {@inheritdoc}
9
+ */
10
+ protected static function getFacadeAccessor()
11
+ {
12
+ return 'app-settings';
13
14
+}
0 commit comments