Skip to content

Commit 6875fbc

Browse files
committed
Fix Note Facade issue
1 parent 81e3c85 commit 6875fbc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/Facades/Note.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace Codexshaper\WooCommerce\Facades;
4+
5+
use Illuminate\Support\Facades\Facade;
6+
7+
class Note extends Facade
8+
{
9+
/**
10+
* Get the registered name of the component.
11+
*
12+
* @return string
13+
*/
14+
protected static function getFacadeAccessor()
15+
{
16+
return 'Codexshaper\WooCommerce\Models\Note';
17+
}
18+
}

0 commit comments

Comments
 (0)