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

Services::mail()   A

Complexity

Conditions 5
Paths 6

Size

Total Lines 17
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 8
c 0
b 0
f 0
nc 6
nop 2
dl 0
loc 17
rs 9.6111
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