summaryrefslogtreecommitdiffstats
path: root/system/libraries/Zip.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2011-12-27 01:38:39 +0100
committerAndrey Andreev <narf@bofh.bg>2011-12-27 01:38:39 +0100
commitb1f3f57c65083904fe899753043419a25b073898 (patch)
treee7c079bc92ef46b2ebf3a27937fc572dfb4ddde4 /system/libraries/Zip.php
parentb9535c80cc389952912f456f2c68665398b71494 (diff)
Remove access lines from method descriptions
Diffstat (limited to 'system/libraries/Zip.php')
-rw-r--r--system/libraries/Zip.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/system/libraries/Zip.php b/system/libraries/Zip.php
index 7a97914c0..d60b99462 100644
--- a/system/libraries/Zip.php
+++ b/system/libraries/Zip.php
@@ -68,7 +68,6 @@ class CI_Zip {
*
* Lets you add a virtual directory into which you can place files.
*
- * @access public
* @param mixed the directory name. Can be string or array
* @return void
*/
@@ -115,7 +114,6 @@ class CI_Zip {
/**
* Add Directory
*
- * @access protected
* @param string the directory name
* @return void
*/
@@ -167,7 +165,6 @@ class CI_Zip {
* in the filename it will be placed within a directory. Make
* sure you use add_dir() first to create the folder.
*
- * @access public
* @param mixed
* @param string
* @return void
@@ -194,7 +191,6 @@ class CI_Zip {
/**
* Add Data to Zip
*
- * @access protected
* @param string the file name/path
* @param string the data to be encoded
* @return void
@@ -248,7 +244,6 @@ class CI_Zip {
/**
* Read the contents of a file and add it to the zip
*
- * @access public
* @return bool
*/
public function read_file($path, $preserve_filepath = FALSE)
@@ -282,7 +277,6 @@ class CI_Zip {
* sub-folders) and creates a zip based on it. Whatever directory structure
* is in the original file path will be recreated in the zip file.
*
- * @access public
* @param string path to source
* @return bool
*/
@@ -336,7 +330,6 @@ class CI_Zip {
/**
* Get the Zip file
*
- * @access public
* @return binary string
*/
public function get_zip()
@@ -363,7 +356,6 @@ class CI_Zip {
*
* Lets you write a file
*
- * @access public
* @param string the file name
* @return bool
*/
@@ -387,7 +379,6 @@ class CI_Zip {
/**
* Download
*
- * @access public
* @param string the file name
* @param string the data to be encoded
* @return bool
@@ -417,7 +408,6 @@ class CI_Zip {
* Lets you clear current zip data. Useful if you need to create
* multiple zips with different data.
*
- * @access public
* @return void
*/
public function clear_data()