[SPIP] v3.2.1-->v3.2.3
[lhc/web/www.git] / www / plugins-dist / medias / lib / getid3 / module.archive.szip.php
index 6751729..5b0601b 100644 (file)
@@ -1,11 +1,11 @@
 <?php
+
 /////////////////////////////////////////////////////////////////
 /// getID3() by James Heinrich <info@getid3.org>               //
-//  available at http://getid3.sourceforge.net                 //
-//            or http://www.getid3.org                         //
-//          also https://github.com/JamesHeinrich/getID3       //
-/////////////////////////////////////////////////////////////////
-// See readme.txt for more details                             //
+//  available at https://github.com/JamesHeinrich/getID3       //
+//            or https://www.getid3.org                        //
+//            or http://getid3.sourceforge.net                 //
+//  see readme.txt for more details                            //
 /////////////////////////////////////////////////////////////////
 //                                                             //
 // module.archive.szip.php                                     //
@@ -17,7 +17,9 @@
 
 class getid3_szip extends getid3_handler
 {
-
+       /**
+        * @return bool
+        */
        public function Analyze() {
                $info = &$this->getid3->info;
 
@@ -30,8 +32,8 @@ class getid3_szip extends getid3_handler
                $info['fileformat']            = 'szip';
                $info['szip']['major_version'] = getid3_lib::BigEndian2Int(substr($SZIPHeader, 4, 1));
                $info['szip']['minor_version'] = getid3_lib::BigEndian2Int(substr($SZIPHeader, 5, 1));
-$this->error('SZIP parsing not enabled in this version of getID3() ['.$this->getid3->version().']');
-return false;
+               $this->error('SZIP parsing not enabled in this version of getID3() ['.$this->getid3->version().']');
+               return false;
 
                while (!$this->feof()) {
                        $NextBlockID = $this->fread(2);