LocalDeliveryCostInterface
last analyzed

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
getValue() 0 1 ?
1
<?php
2
namespace pastuhov\ymlcatalog;
3
4
/**
5
 * Стоимость доставки для своего региона, для всех товаров.
6
 *
7
 * @package pastuhov\yml
8
 * @deprecated
9
 */
10
interface LocalDeliveryCostInterface
11
{
12
    /**
13
     * Значение.
14
     *
15
     * Для обозначения бесплатной доставки используйте значение 0.
16
     *
17
     * @return integer|0
0 ignored issues
show
Documentation introduced by
The doc-type integer|0 could not be parsed: Unknown type name "0" at position 8. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
18
     */
19
    public function getValue();
20
}
21