Completed
Pull Request — master (#14)
by Cesar
01:40
created

AbstractHyperwalletService::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace App\Service\Hyperwallet;
4
5
use Psr\Log\LoggerInterface;
6
7
/**
8
 * Class AbstractHyperwalletService
9
 * @package App\Service\Hyperwallet
10
 */
11
abstract class AbstractHyperwalletService
12
{
13
    /**
14
     * @var LoggerInterface
15
     */
16
    protected $logger;
17
18
    /**
19
     * AbstractHyperwalletService constructor.
20
     * @param LoggerInterface $logger
21
     */
22
    public function __construct(
23
        LoggerInterface $logger
24
    ) {
25
        $this->logger = $logger;
26
    }
27
}
28