Completed
Pull Request — master (#1)
by Rafał
05:45
created

TenantProvider::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
/**
4
 * This file is part of the Superdesk Web Publisher MultiTenancy Component.
5
 *
6
 * Copyright 2015 Sourcefabric z.u. and contributors.
7
 *
8
 * For the full copyright and license information, please see the
9
 * AUTHORS and LICENSE files distributed with this source code.
10
 *
11
 * @copyright 2015 Sourcefabric z.ú.
12
 * @license http://www.superdesk.org/license
13
 */
14
namespace SWP\Component\MultiTenancy\Provider;
15
16
use SWP\Component\MultiTenancy\Repository\TenantRepositoryInterface;
17
18
class TenantProvider implements TenantProviderInterface
19
{
20
    /**
21
     * @var TenantRepositoryInterface
22
     */
23
    private $tenantRepository;
24
25
    /**
26
     * Construct.
27
     *
28
     * @param TenantRepositoryInterface $tenantRepository Tenant repository
29
     */
30
    public function __construct(TenantRepositoryInterface $tenantRepository)
31
    {
32
        $this->tenantRepository = $tenantRepository;
33
    }
34
35
    /**
36
     * {@inheritdoc}
37
     */
38
    public function getAvailableTenants()
39
    {
40
        return $this->tenantRepository
41
            ->findAvailableTenants();
42
    }
43
}
44