Completed
Push — master ( 2b2c94...1ed135 )
by Mahmoud
04:58
created

PaypalAccountRepository::model()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace App\Containers\Paypal\Data\Repositories;
4
5
use App\Containers\Paypal\Models\PaypalAccount;
6
use App\Port\Repository\Abstracts\Repository;
7
8
/**
9
 * Class PaypalAccountRepository.
10
 *
11
 * @author Mahmoud Zalt <[email protected]>
12
 */
13
class PaypalAccountRepository extends Repository
14
{
15
16
    /**
17
     * Specify Model class name.
18
     *
19
     * @return string
20
     */
21
    public function model()
22
    {
23
        return PaypalAccount::class;
24
    }
25
}
26