Completed
Pull Request — master (#355)
by
unknown
02:53
created

ExactServiceProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 6
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 3 1
1
<?php
2
3
namespace Picqer\Laravel\Exact\Providers;
4
5
use Illuminate\Support\ServiceProvider;
6
use Picqer\Financials\Exact\Connection;
7
use Picqer\Laravel\Exact\Connection as LaravelConnection;
8
9
class ExactServiceProvider extends ServiceProvider
10
{
11
12
    public function register()
13
    {
14
        $this->app->alias(LaravelConnection::class, Connection::class);
15
        
16
        // todo: implement routes and migrations for authentication with Exact..
17
    }
18
19
}