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

DatabaseRepository::read()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
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