Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
TextTrackCueList
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 _unimplemented
n/a
0 / 0
n/a
0 / 0
0
 getLength
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 item
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getCueById
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM\Stub;
7
8use Exception;
9use Wikimedia\IDLeDOM\TextTrackCue;
10
11trait TextTrackCueList {
12
13    // Underscore is used to avoid conflicts with DOM-reserved names
14    // phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
15    // phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
16
17    /**
18     * @return Exception
19     */
20    abstract protected function _unimplemented(): Exception;
21
22    // phpcs:enable
23
24    /**
25     * @return int
26     */
27    public function getLength(): int {
28        throw self::_unimplemented();
29    }
30
31    /**
32     * @param int $index
33     * @return TextTrackCue
34     */
35    public function item( int $index ) {
36        throw self::_unimplemented();
37    }
38
39    /**
40     * @param string $id
41     * @return TextTrackCue|null
42     */
43    public function getCueById( string $id ) {
44        throw self::_unimplemented();
45    }
46
47}