Base64HandlerServiceProvider::boot()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
3
/**
4
 * This file is part of the Base64 Handler library.
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 *
9
 * PHP Version 7
10
 *
11
 * LICENSE: This source file is subject to the MIT license that is available
12
 * through the world-wide-web at the following URI:
13
 * http://opensource.org/licenses/mit-license.php
14
 *
15
 * @category Src
16
 * @package  Normeno\Base64Handler
17
 * @author   Nicolas Ormeno <[email protected]>
18
 * @license  http://opensource.org/licenses/mit-license.php MIT License
19
 * @link     https://github.com/normeno/base64_handler
20
 */
21
namespace Normeno\Base64Handler;
22
23
use Illuminate\Support\ServiceProvider;
24
25
/**
26
 * Tests for Format
27
 *
28
 * @category Test
29
 * @package  Normeno\Base64Handler
30
 * @author   Nicolas Ormeno <[email protected]>
31
 * @license  http://opensource.org/licenses/mit-license.php MIT License
32
 * @link     https://github.com/normeno/base64_handler
33
 */
34
class Base64HandlerServiceProvider extends ServiceProvider
35
{
36
    /**
37
     * Bootstrap services.
38
     *
39
     * @return void
40
     */
41
    public function boot()
42
    {
43
        //
44
    }
45
46
    /**
47
     * Register services.
48
     *
49
     * @return void
50
     */
51
    public function register()
52
    {
53
        //
54
    }
55
}
56