Primo Committ

This commit is contained in:
paoloar77
2024-05-07 12:17:25 +02:00
commit e73d0e5113
7204 changed files with 884387 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Attribute extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Attribute';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Category extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Category';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Coupon extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Coupon';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Customer extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Customer';
}
}

View File

@@ -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';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Order extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Order';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class PaymentGateway extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\PaymentGateway';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Product extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Product';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Query extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Query';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Refund extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Refund';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Report extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Report';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Review extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Review';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Setting extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Setting';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class ShippingMethod extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\ShippingMethod';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class ShippingZone extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\ShippingZone';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class ShippingZoneMethod extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\ShippingZoneMethod';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class System extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\System';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Tag extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Tag';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Tax extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Tax';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class TaxClass extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\TaxClass';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Term extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Term';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Variation extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Variation';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Illuminate\Support\Facades\Facade;
class Webhook extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\WooCommerce\Models\Webhook';
}
}

View File

@@ -0,0 +1,19 @@
<?php
namespace Codexshaper\WooCommerce\Facades;
use Codexshaper\WooCommerce\WooCommerceApi;
use Illuminate\Support\Facades\Facade;
class WooCommerce extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return WooCommerceApi::class;
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codexshaper\Woocommerce\Facades;
use Illuminate\Support\Facades\Facade;
class WoocommerceFacade extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Codexshaper\Woocommerce\WooCommerceApi';
}
}