コード例 #1
0
ファイル: ExifDirectory.php プロジェクト: exifer/exifer
 public function addTag(TagInterface $tag)
 {
     if (!$tag instanceof ExifTagInterface) {
         throw new \InvalidArgumentException(sprintf('The tag "%s" must be implement Exifer\\Exif\\ExifTagInterface', $tag->getTagName()));
     }
     return parent::addTag($tag);
 }