Skip to content

Commit e99bc5d

Browse files
committed
restore file with valid name case
1 parent 15dbe1c commit e99bc5d

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?php
2+
3+
/*
4+
* This file is part of PHPExifTool.
5+
*
6+
* (c) 2012 Romain Neutron <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace PHPExiftool\Driver\Tag\ID3v23;
13+
14+
use JMS\Serializer\Annotation\ExclusionPolicy;
15+
use PHPExiftool\Driver\AbstractTag;
16+
17+
/**
18+
* @ExclusionPolicy("all")
19+
*/
20+
class PictureMIMEType extends AbstractTag
21+
{
22+
23+
protected $Id = 'APIC-1';
24+
25+
protected $Name = 'PictureMIMEType';
26+
27+
protected $FullName = 'ID3::v2_3';
28+
29+
protected $GroupName = 'ID3v2_3';
30+
31+
protected $g0 = 'ID3';
32+
33+
protected $g1 = 'ID3v2_3';
34+
35+
protected $g2 = 'Audio';
36+
37+
protected $Type = '?';
38+
39+
protected $Writable = false;
40+
41+
protected $Description = 'Picture MIME Type';
42+
43+
protected $local_g2 = 'Image';
44+
}

0 commit comments

Comments
 (0)