Test Failed
Push — feature-laravel-5.4 ( 475d96...446986 )
by Kirill
07:30
created

TestController::test()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * This file is part of laravel.su package.
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 */
7
declare(strict_types=1);
8
9
namespace App\Http\Controllers;
10
11
use App\DataProviders\LaravelNewsDataProvider;
12
use App\Services\DataProviders\Manager;
13
use Carbon\Carbon;
14
use GuzzleHttp\Client;
15
16
class TestController
17
{
18
    public function test(Manager $manager)
19
    {
20
        dd($manager);
21
    }
22
}