We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62f4de7 commit 06b98bcCopy full SHA for 06b98bc
src/ID3Parser.php
@@ -8,15 +8,15 @@
8
9
namespace ID3Parser;
10
11
-use ID3Parser\getID3\getID3;
+use ID3Parser\getID3\getid3;
12
13
class ID3Parser {
14
/**
15
* @param string $fileName
16
* @return array
17
*/
18
public function analyze($fileName) {
19
- $getID3 = new getID3();
+ $getID3 = new getid3();
20
return $getID3->analyze($fileName);
21
}
22
src/getID3/getid3.php
@@ -8,7 +8,7 @@
namespace ID3Parser\getID3;
-class getID3 {
+class getid3 {
// public: Settings
private $encoding = 'UTF-8'; // CASE SENSITIVE! - i.e. (must be supported by iconv()). Examples: ISO-8859-1 UTF-8 UTF-16 UTF-16BE
0 commit comments