Completed
Push — master ( 723c0e...561193 )
by ARCANEDEV
02:49
created

VimeoParser   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 46
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 25%

Importance

Changes 0
Metric Value
dl 0
loc 46
c 0
b 0
f 0
wmc 4
lcom 0
cbo 1
ccs 2
cts 8
cp 0.25
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A videoId() 0 4 1
A defaultQueries() 0 4 1
A getIframePattern() 0 4 1
A getIframeReplacer() 0 4 1
1
<?php namespace Arcanedev\EmbedVideo\Parsers;
2
3
/**
4
 * Class     VimeoParser
5
 *
6
 * @package  Arcanedev\EmbedVideo\Parsers
7
 * @author   ARCANEDEV <[email protected]>
8
 */
9
class VimeoParser extends AbstractParser
10
{
11
    /* -----------------------------------------------------------------
12
     |  Getters & Setters
13
     | -----------------------------------------------------------------
14
     */
15
    /**
16
     * Get the video id from cached matches.
17
     *
18
     * @return mixed
19
     */
20
    protected function videoId()
21
    {
22
        // TODO: Implement videoId() method.
23
    }
24
25
    /**
26
     * Get the default URL queries.
27
     *
28
     * @return array
29
     */
30 3
    protected function defaultQueries()
31
    {
32
        // TODO: Implement defaultQueries() method.
33 3
    }
34
35
    /**
36
     * Get the iframe pattern.
37
     *
38
     * @return string
39
     */
40
    protected function getIframePattern()
41
    {
42
        // TODO: Implement getIframePattern() method.
43
    }
44
45
    /**
46
     * Get the iframe replace.
47
     *
48
     * @return array
49
     */
50
    protected function getIframeReplacer()
51
    {
52
        // TODO: Implement getIframeReplacer() method.
53
    }
54
}
55