Skip to content

Commit adae3e2

Browse files
committed
πŸ› Working facade
1 parent 4bb6a65 commit adae3e2

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

β€ŽCHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-zammad` will be documented in this file.
44

5+
## 0.0.1 - 2021-04-21
6+
7+
- Facade was not registered correct.
8+
59
## 0.0.0 - 2021-04-21
610

711
- πŸŽ‰ initial release

β€Žcomposer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"CodebarAg\\Zammad\\ZammadServiceProvider"
5757
],
5858
"aliases": {
59-
"Zammad": "CodebarAg\\Zammad\\ZammadFacade"
59+
"Zammad": "CodebarAg\\Zammad\\Facades\\Zammad"
6060
}
6161
}
6262
},

β€Žsrc/Facades/Zammad.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ class Zammad extends Facade
2222
{
2323
protected static function getFacadeAccessor(): string
2424
{
25-
return Zammad::class;
25+
return \CodebarAg\Zammad\Zammad::class;
2626
}
2727
}

0 commit comments

Comments
Β (0)