Skip to content

Commit a92e349

Browse files
authored
PaymentMethod Facade
this will help in Payment gateway
1 parent 155db8b commit a92e349

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/Facades/PaymentMethod.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 PaymentMethod 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\PaymentMethod';
17+
}
18+
}

0 commit comments

Comments
 (0)