Passed
Pull Request — master (#1)
by Grebenikov
04:34
created

MinuboConfig::getBucketDirectory()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * MIT License
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Zed\Minubo;
9
10
use Spryker\Zed\Kernel\AbstractBundleConfig;
11
use SprykerEco\Shared\Minubo\MinuboConstants;
12
13
class MinuboConfig extends AbstractBundleConfig
14
{
15
    /**
16
     * @return string
17
     */
18
    public function getFileSystemName(): string
19
    {
20
        return $this->get(MinuboConstants::MINUBO_FILE_SYSTEM_NAME);
21
    }
22
23
    /**
24
     * @return string
25
     */
26
    public function getBucketDirectory(): string
27
    {
28
        return $this->get(MinuboConstants::MINUBO_BUCKET_DIRECTORY);
29
    }
30
31
    /**
32
     * @return array
33
     */
34
    public function getCustomerSecureFields(): array
35
    {
36
        return $this->get(MinuboConstants::MINUBO_CUSTOMER_SECURE_FIELDS, []);
37
    }
38
}
39