Skip to content

Commit

Permalink
Fix Note Facade issue
Browse files Browse the repository at this point in the history
  • Loading branch information
maab16 committed Aug 29, 2020
1 parent 81e3c85 commit 6875fbc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Facades/Note.php
@@ -0,0 +1,18 @@
<?php

namespace Codexshaper\WooCommerce\Facades;

use Illuminate\Support\Facades\Facade;

class Note extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Note';
}
}

0 comments on commit 6875fbc

Please sign in to comment.