Passed
Push — main ( 3399b6...dd4eea )
by Dimitri
11:50
created

Services::discoverServiceSingleton()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 12
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 9
c 1
b 0
f 0
nc 3
nop 1
dl 0
loc 12
rs 9.9666
1
<?php
2
3
/**
4
 * This file is part of Blitz PHP framework.
5
 *
6
 * (c) 2022 Dimitri Sitchet Tomkeu <[email protected]>
7
 *
8
 * For the full copyright and license information, please view
9
 * the LICENSE file that was distributed with this source code.
10
 */
11
12
namespace BlitzPHP\Loader;
13
14
use BlitzPHP\Container\Services as ContainerServices;
15
16
/**
17
 * @deprecated 1.0. Use \BlitzPHP\Container\Service
18
 */
19
final class Services extends ContainerServices
20
{
21
22
}
23