1 | <?php |
||
12 | class IEDriver extends CompressedBinary implements DriverInterface |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | * |
||
17 | * @return string |
||
18 | */ |
||
19 | public function getName() |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getFileName() |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | * |
||
46 | * @return string |
||
47 | */ |
||
48 | public function getUrl() |
||
60 | |||
61 | /** |
||
62 | * {@inheritdoc} |
||
63 | * |
||
64 | * @return string |
||
65 | */ |
||
66 | public function getOutputFileName() |
||
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | * |
||
75 | * @return bool |
||
76 | */ |
||
77 | public function isSupported() |
||
82 | |||
83 | /** |
||
84 | * Remove old versions of the binary. |
||
85 | * |
||
86 | * @param $directory |
||
87 | * @return void |
||
88 | */ |
||
89 | protected function removeOldVersions($directory) |
||
96 | |||
97 | /** |
||
98 | * {@inheritdoc} |
||
99 | * |
||
100 | * @param string $directory |
||
101 | * @return string |
||
102 | */ |
||
103 | protected function getOldFilePattern($directory) |
||
107 | |||
108 | /** |
||
109 | * {@inheritdoc} |
||
110 | * |
||
111 | * @param string $directory |
||
112 | * @return string |
||
113 | */ |
||
114 | public function getDriverPath($directory) |
||
119 | |||
120 | /** |
||
121 | * {@inheritdoc} |
||
122 | * |
||
123 | * @return string |
||
124 | */ |
||
125 | public function getExtractedName() |
||
129 | } |
||
130 |