AvailabilityProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 4
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 0 2 1
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