Completed
Branch master (e25020)
by Richan
03:06
created

DatabaseRepository   A

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
class DatabaseRepository extends Repository
6
{
7
    /**
8
     * Read the datasource.
9
     *
10
     * @return \Illuminate\Support\Collection
11
     */
12
    protected function read()
13
    {
14
        return \DB::table($this->datasource)
15
            ->orderBy('order', 'asc')
16
            ->get();
17
    }
18
}
19