Passed
Push — master ( a43723...a5546b )
by Luiz Kim
07:50
created
src/Entity/File.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,19 +76,19 @@
 block discarded – undo
76 76
     #[GeneratedValue(strategy: 'IDENTITY')]
77 77
     private int $id = 0;
78 78
 
79
-    #[Groups(['file:read', 'spool:read',  'order_details:read', 'category:read', 'product_category:read', 'order_product:read', 'product_file:read', 'product:read', 'spool_item:read', 'file_item:read', 'file:write', 'contract:read', 'model:read', 'people:read'])]
79
+    #[Groups(['file:read', 'spool:read', 'order_details:read', 'category:read', 'product_category:read', 'order_product:read', 'product_file:read', 'product:read', 'spool_item:read', 'file_item:read', 'file:write', 'contract:read', 'model:read', 'people:read'])]
80 80
     #[NotBlank]
81 81
     #[ApiFilter(filterClass: SearchFilter::class, properties: ['fileType' => 'exact'])]
82 82
     #[Column(type: 'string', length: 255, nullable: false)]
83 83
     private string $fileType;
84 84
 
85
-    #[Groups(['file:read', 'spool:read',  'order_details:read', 'category:read', 'product_category:read', 'order_product:read', 'product_file:read', 'product:read', 'spool_item:read', 'file_item:read', 'file:write', 'contract:read', 'model:read', 'people:read'])]
85
+    #[Groups(['file:read', 'spool:read', 'order_details:read', 'category:read', 'product_category:read', 'order_product:read', 'product_file:read', 'product:read', 'spool_item:read', 'file_item:read', 'file:write', 'contract:read', 'model:read', 'people:read'])]
86 86
     #[NotBlank]
87 87
     #[ApiFilter(filterClass: SearchFilter::class, properties: ['fileName' => 'exact'])]
88 88
     #[Column(type: 'string', length: 255, nullable: false)]
89 89
     private string $fileName;
90 90
 
91
-    #[Groups(['file:read', 'spool:read',  'order_details:read', 'category:read', 'product_category:read', 'order_product:read', 'product_file:read', 'product:read', 'spool_item:read', 'file_item:read', 'file:write', 'contract:read', 'model:read', 'people:read'])]
91
+    #[Groups(['file:read', 'spool:read', 'order_details:read', 'category:read', 'product_category:read', 'order_product:read', 'product_file:read', 'product:read', 'spool_item:read', 'file_item:read', 'file:write', 'contract:read', 'model:read', 'people:read'])]
92 92
     #[NotBlank]
93 93
     #[ApiFilter(filterClass: SearchFilter::class, properties: ['context' => 'exact'])]
94 94
     #[Column(type: 'string', length: 255, nullable: false)]
Please login to merge, or discard this patch.