ProductNameAwareInterface
last analyzed

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
setProductName() 0 1 ?
1
<?php
2
3
namespace Tkotosz\BlockDecorator\View\Element\Block\CurrentProduct;
4
5
interface ProductNameAwareInterface
6
{
7
    /**
8
     * @param string $productName
9
     */
10
    public function setProductName(string $productName): void;
11
}
12