ConfigProviderInterface
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  
isExportAsync() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * File:ConfigProviderInterface.php
6
 *
7
 * @author      Maciej Sławik <[email protected]>
8
 * Github:      https://github.com/maciejslawik
9
 */
10
11
namespace MSlwk\GenericOrderExport\Api;
12
13
/**
14
 * Interface ConfigProviderInterface
15
 * @package MSlwk\GenericOrderExport\Api
16
 */
17
interface ConfigProviderInterface
18
{
19
    /**
20
     * @return bool
21
     */
22
    public function isExportAsync(): bool;
23
}