Completed
Push — master ( bdbbf1...dd06a0 )
by Tim
17:01
created

Videoplayer::detailAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 2
1
<?php
2
/**
3
 * Slot for html5videoplayer
4
 *
5
 * @package Html5videoplayerPowermail\Slots
6
 * @author  Tim Lochmüller
7
 */
8
9
namespace FRUIT\Html5videoplayerPowermail\Slots;
10
11
/**
12
 * Slot for html5videoplayer
13
 *
14
 * @author Tim Lochmüller
15
 */
16
class Videoplayer extends AbstractSlot
17
{
18
19
    /**
20
     * Slot for html5videoplayer
21
     *
22
     * @param $videos
23
     * @param $video
24
     *
25
     * @return void
26
     */
27
    public function detailAction($videos, $video)
0 ignored issues
show
Unused Code introduced by
The parameter $videos is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
28
    {
29
        $this->getAccessService()
30
            ->checkVideoAccess($video);
31
    }
32
}
33