Merge pull request #4586 from devansh-webkul/some-enhancement
Two properties moved to abstract class
This commit is contained in:
commit
18a4ece78e
|
|
@ -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.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue