Completed
Pull Request — master (#355)
by
unknown
03:30
created

ExactServiceProvider::register()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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
}