Completed
Push — master ( 29841a...1ff6d9 )
by Beñat
02:32
created

ByHashUploadAction::command()   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
/*
4
 * This file is part of the BenGorFile package.
5
 *
6
 * (c) Beñat Espiña <[email protected]>
7
 * (c) Gorka Laucirica <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace BenGorFile\FileBundle\Controller;
14
15
use BenGorFile\File\Application\Command\Upload\ByHashUploadFileCommand;
16
17
/**
18
 * BenGor file's by hash upload action trait.
19
 *
20
 * @author Beñat Espiña <[email protected]>
21
 */
22
trait ByHashUploadAction
23
{
24
    use UploadAction;
25
26
    /**
27
     * {@inheritdoc}
28
     */
29
    private function command()
0 ignored issues
show
Unused Code introduced by
This method is not used, and could be removed.
Loading history...
30
    {
31
        return ByHashUploadFileCommand::class;
32
    }
33
}
34