Passed
Push — master ( 07ff08...756a96 )
by Arthur
05:20
created

ModelFactory   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A fromFactory() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: arthur
5
 * Date: 30.10.18
6
 * Time: 14:38
7
 */
8
9
namespace Foundation\Traits;
10
11
12
use Illuminate\Database\Eloquent\FactoryBuilder;
13
14
trait ModelFactory
15
{
16
    public static function fromFactory(?int $amount = null) :FactoryBuilder
17
    {
18
        return factory(static::class, $amount);
19
    }
20
}