DatabaseRepository   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A read() 0 6 1
1
<?php
2
3
namespace RichanFongdasen\I18n\Repositories;
4
5
use Illuminate\Support\Collection;
6
7
class DatabaseRepository extends Repository
8
{
9
    /**
10
     * Read the datasource.
11
     *
12
     * @return \Illuminate\Support\Collection
13
     */
14
    protected function read(): Collection
15
    {
16
        return \DB::table($this->datasource)
17
            ->orderBy('order', 'asc')
18
            ->get();
19
    }
20
}
21