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

VimeoParser::getIframePattern()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
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