Passed
Push — master ( 1eef79...15d15f )
by Luiz Kim
07:27
created
src/Entity/ProductGroupProduct.php 1 patch
Indentation   -4 removed lines patch added patch discarded remove patch
@@ -85,7 +85,6 @@  discard block
 block discarded – undo
85 85
      * @ORM\ManyToOne(targetEntity="Product")
86 86
      * @ORM\JoinColumn(name="product_child_id", referencedColumnName="id", nullable=false)
87 87
      * @Groups({"product_group_read","product_group_product_read","product_group_write","product_group_product_write"})
88
-
89 88
      */
90 89
     private $productChild;
91 90
 
@@ -94,7 +93,6 @@  discard block
 block discarded – undo
94 93
      *
95 94
      * @ORM\Column(name="quantity", type="float", precision=10, scale=2, nullable=false, options={"default"="1.00"})
96 95
      * @Groups({"product_group_read","product_group_product_read","product_group_write","product_group_product_write"})
97
-
98 96
      */
99 97
     private $quantity = 0;
100 98
 
@@ -103,7 +101,6 @@  discard block
 block discarded – undo
103 101
      *
104 102
      * @ORM\Column(name="price", type="float", precision=10, scale=2, nullable=false)
105 103
      * @Groups({"product_group_read","product_group_product_read","product_group_write","product_group_product_write"})
106
-
107 104
      */
108 105
     private $price = 0;
109 106
 
@@ -112,7 +109,6 @@  discard block
 block discarded – undo
112 109
      *
113 110
      * @ORM\Column(name="active", type="boolean", nullable=false, options={"default"="1"})
114 111
      * @Groups({"product_group_read","product_group_product_read","product_group_write","product_group_product_write"})
115
-
116 112
      */
117 113
     private $active = true;
118 114
 
Please login to merge, or discard this patch.