DecoratorInterface
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
decorate() 0 1 ?
1
<?php
2
3
namespace Tkotosz\BlockDecorator\View\Element\Block\Decorator;
4
5
use Magento\Framework\View\Element\BlockInterface;
6
7
interface DecoratorInterface
8
{
9
    public function decorate(BlockInterface $block): void;
10
}
11