Browse Source

Minor - added phpdoc block

Yannick Warnier 12 years ago
parent
commit
ac6b42bcae
1 changed files with 4 additions and 2 deletions
  1. 4 2
      main/inc/lib/zip.class.php

+ 4 - 2
main/inc/lib/zip.class.php

@@ -1,5 +1,4 @@
 <?php
-
 /**
  * Wrapper around pclzip. Makes a bit easier to use compression.
  * 
@@ -16,6 +15,9 @@
  * @license see /license.txt
  * @author Laurent Opprecht <laurent@opprecht.info> for the Univesity of Geneva
  */
+/**
+ * Zip wrapper class
+ */
 class Zip
 {
 
@@ -126,4 +128,4 @@ class Zip
         return 1;
     }
 
-}
+}