Test Setup Failed
Push — master ( c5e0f8...795874 )
by
unknown
16:00 queued 07:00
created

SaasClientController::setClientService()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the SaasProviderBundle package.
5
 * (c) Fluxter <http://fluxter.net/>
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace Fluxter\SaasProviderBundle\Controller\Abstraction;
11
12
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
13
14
abstract class SaasClientController extends AbstractController
15
{
16
    use SaasClientControllerTrait;
17
}
18