Completed
Push — master ( a2b732...080f9b )
by Rai
10s
created

BludataServiceProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 25
rs 10
c 0
b 0
f 0
wmc 1
lcom 1
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 22 1
1
<?php
2
3
namespace Bludata\Lumen\Providers;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class BludataServiceProvider extends ServiceProvider
8
{
9
    public function register()
10
    {
11
        $this->app->register(\LaravelDoctrine\Migrations\MigrationsServiceProvider::class);
0 ignored issues
show
Coding Style introduced by
This line exceeds maximum limit of 80 characters; contains 91 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
12
        $this->app->register(\LaravelDoctrine\ORM\DoctrineServiceProvider::class);
0 ignored issues
show
Coding Style introduced by
This line exceeds maximum limit of 80 characters; contains 82 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
13
        $this->app->register(\LaravelDoctrine\Extensions\GedmoExtensionsServiceProvider::class);
0 ignored issues
show
Coding Style introduced by
This line exceeds maximum limit of 80 characters; contains 96 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
14
15
        $this->app->register(\Bludata\Lumen\Authentication\JWT\Providers\JWTServiceProvider::class);
0 ignored issues
show
Coding Style introduced by
This line exceeds maximum limit of 80 characters; contains 100 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
16
        $this->app->register(CustomConnectionSqlanywhereServiceProvider::class);
17
        $this->app->register(RegisterCustomAnnotationsServiceProvider::class);
18
19
        /*
20
        |--------------------------------------------------------------------------
0 ignored issues
show
Coding Style introduced by
This line exceeds maximum limit of 80 characters; contains 83 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
21
        | Aliases
22
        |--------------------------------------------------------------------------
0 ignored issues
show
Coding Style introduced by
This line exceeds maximum limit of 80 characters; contains 83 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
23
        |
24
        | Here we will register all of the application's aliases.
25
        |
26
        */
27
        class_alias(\LaravelDoctrine\ORM\Facades\EntityManager::class, 'EntityManager');
0 ignored issues
show
Coding Style introduced by
This line exceeds maximum limit of 80 characters; contains 88 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
28
        class_alias(\LaravelDoctrine\ORM\Facades\Registry::class, 'Registry');
29
        class_alias(\LaravelDoctrine\ORM\Facades\Doctrine::class, 'Doctrine');
30
    }
31
}
32