AvailabilityProvider::execute()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
rs 10
c 1
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * Application Service Class
6
 * @package Ticaje_BookingApi
7
 * @author Hector Luis Barrientos <[email protected]>
8
 */
9
10
namespace Ticaje\BookingApi\Application\Service\Provider;
11
12
use Ticaje\BookingApi\Application\Signatures\Provider\AvailabilityProviderSignature;
13
14
use Ticaje\Hexagonal\Application\Signatures\UseCase\UseCaseCommandInterface;
15
16
/**
17
 * Class AvailabilityProvider
18
 * @package Ticaje\BookingApi\Application\Service\Provider
19
 */
20
class AvailabilityProvider implements AvailabilityProviderSignature
21
{
22
    public function execute(UseCaseCommandInterface $command)
23
    {
24
        // TODO: Implement execute() method.
25
    }
26
}
27