StorageTrait::getImageDimensions()   A
last analyzed

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
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
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