Merge pull request #4586 from devansh-webkul/some-enhancement

Two properties moved to abstract class
This commit is contained in:
Glenn Hermans 2021-02-11 13:30:56 +01:00 committed by GitHub
commit 18a4ece78e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 7 deletions

View File

@ -133,6 +133,20 @@ abstract class AbstractType
*/
protected $productOptions = [];
/**
* Skip attribute for simple product type.
*
* @var array
*/
protected $skipAttributes = [];
/**
* These blade files will be included in product edit page.
*
* @var array
*/
protected $additionalViews = [];
/**
* Create a new product type instance.
*

View File

@ -4,13 +4,6 @@ namespace Webkul\Product\Type;
class Simple extends AbstractType
{
/**
* Skip attribute for simple product type
*
* @var array
*/
protected $skipAttributes = [];
/**
* These blade files will be included in product edit page
*