DatabaseRepository::read()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

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