We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aaf6c4 commit 4a5cf2fCopy full SHA for 4a5cf2f
app/code/Magento/Catalog/Model/Product/Type.php
@@ -20,34 +20,22 @@
20
/**
21
* Product type model
22
*
23
+ *
24
* @api
25
* @since 100.0.2
26
*/
27
class Type implements OptionSourceInterface
28
{
- /**#@+
29
- * Available product types
30
- */
31
const TYPE_SIMPLE = 'simple';
32
33
const TYPE_BUNDLE = 'bundle';
34
35
const TYPE_VIRTUAL = 'virtual';
36
- /**#@-*/
37
38
- /**
39
- * Default product type
40
41
const DEFAULT_TYPE = 'simple';
42
43
44
- * Default product type model
45
46
const DEFAULT_TYPE_MODEL = Simple::class;
47
48
49
- * Default price model
50
51
const DEFAULT_PRICE_MODEL = Price::class;
52
53
0 commit comments