StorageTrait   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 18
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getImageDimensions() 0 4 1
1
<?php
2
3
namespace FaithGen\SDK\Traits;
4
5
trait StorageTrait
6
{
7
    /**
8
     * The name of the directory in storage that has files for this model.
9
     * @return mixed
10
     */
11
    abstract public function filesDir();
12
13
    /**
14
     * The file name fo this model.
15
     * @return mixed
16
     */
17
    abstract public function getFileName();
18
19
    public function getImageDimensions()
20
    {
21
        return [
22
            0, 50, 100,
23
        ];
24
    }
25
}
26