File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 23
23
* @api
24
24
*
25
25
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
26
- * phpcs:disable Magento2.Classes.AbstractApi
27
- * phpcs:disable Magento2.Annotation.MethodAnnotationStructure
28
26
* @since 100.0.2
27
+ * phpcs:disable Magento2.Classes.AbstractApi
29
28
*/
30
29
abstract class AbstractAction implements ResetAfterRequestInterface
31
30
{
@@ -46,7 +45,8 @@ abstract class AbstractAction implements ResetAfterRequestInterface
46
45
47
46
/**
48
47
* Suffix for table to show it is temporary
49
- * @deprecated see getIndexTable
48
+ * @deprecated
49
+ * @see getIndexTable
50
50
*/
51
51
public const TEMPORARY_TABLE_SUFFIX = '_tmp ' ;
52
52
Original file line number Diff line number Diff line change @@ -633,7 +633,7 @@ public function getUpdatedAt()
633
633
* @param bool $calculate
634
634
* @return void
635
635
* @deprecated 102.0.4
636
- * @see we don't recommend this approach anymore
636
+ * @see we don't recommend this approach anymore
637
637
*/
638
638
public function setPriceCalculation ($ calculate = true )
639
639
{
Original file line number Diff line number Diff line change 38
38
/**
39
39
* @inheritdoc
40
40
*
41
- * phpcs:disable Magento2.Annotation.ClassPropertyPHPDocFormatting
42
- * phpcs:disable Magento2.Annotation.MethodAnnotationStructure
43
41
* @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
44
42
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
45
43
* @SuppressWarnings(PHPMD.TooManyFields)
44
+ * phpcs:disable Magento2.Annotation.ClassPropertyPHPDocFormatting
46
45
*/
47
46
class ProductRepository implements \Magento \Catalog \Api \ProductRepositoryInterface, ResetAfterRequestInterface
48
47
{
@@ -797,6 +796,7 @@ private function getMediaGalleryProcessor()
797
796
/**
798
797
* Retrieve collection processor
799
798
*
799
+ * phpcs:disable Magento2.Annotation.MethodAnnotationStructure
800
800
* @deprecated 102.0.0
801
801
* @return CollectionProcessorInterface
802
802
*/
Original file line number Diff line number Diff line change 20
20
* @api
21
21
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
22
22
* @since 100.0.2
23
- * phpcs:disable Magento2.Annotation.ClassPropertyPHPDocFormatting
24
23
* phpcs:disable Generic.CodeAnalysis.EmptyStatement.DetectedFunction
25
24
*/
26
25
class Address extends \Magento \Framework \App \Helper \AbstractHelper implements ResetAfterRequestInterface
@@ -86,6 +85,7 @@ class Address extends \Magento\Framework\App\Helper\AbstractHelper implements Re
86
85
* @var CustomerMetadataInterface
87
86
*
88
87
* @deprecated 101.0.0
88
+ * phpcs:disable Magento2.Annotation.ClassPropertyPHPDocFormatting
89
89
*/
90
90
protected $ _customerMetadataService ;
91
91
@@ -285,7 +285,7 @@ public function getAttributeValidationClass($attributeCode)
285
285
: $ this ->_addressMetadataService ->getAttributeMetadata ($ attributeCode );
286
286
287
287
$ class = $ attribute ? $ attribute ->getFrontendClass () : '' ;
288
- } catch (NoSuchEntityException $ e ) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedCATCH
288
+ } catch (NoSuchEntityException $ e ) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedCatch
289
289
// the attribute does not exist so just return an empty string
290
290
}
291
291
You can’t perform that action at this time.
0 commit comments