We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bb6a65 commit adae3e2Copy full SHA for adae3e2
βCHANGELOG.md
@@ -2,6 +2,10 @@
2
3
All notable changes to `laravel-zammad` will be documented in this file.
4
5
+## 0.0.1 - 2021-04-21
6
+
7
+- Facade was not registered correct.
8
9
## 0.0.0 - 2021-04-21
10
11
- π initial release
βcomposer.json
@@ -56,7 +56,7 @@
56
"CodebarAg\\Zammad\\ZammadServiceProvider"
57
],
58
"aliases": {
59
- "Zammad": "CodebarAg\\Zammad\\ZammadFacade"
+ "Zammad": "CodebarAg\\Zammad\\Facades\\Zammad"
60
}
61
62
},
βsrc/Facades/Zammad.php
@@ -22,6 +22,6 @@ class Zammad extends Facade
22
{
23
protected static function getFacadeAccessor(): string
24
25
- return Zammad::class;
+ return \CodebarAg\Zammad\Zammad::class;
26
27
0 commit comments