Преглед на файлове

ZF-7315: review phpDoc for API documentation generation (Zend_Cache)

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@16867 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael преди 16 години
родител
ревизия
9cb2d219ce
променени са 3 файла, в които са добавени 15 реда и са изтрити 15 реда
  1. 5 5
      library/Zend/Cache/Backend/ZendServer.php
  2. 5 5
      library/Zend/Cache/Backend/ZendServer/Disk.php
  3. 5 5
      library/Zend/Cache/Backend/ZendServer/ShMem.php

+ 5 - 5
library/Zend/Cache/Backend/ZendServer.php

@@ -51,9 +51,9 @@ abstract class Zend_Cache_Backend_ZendServer extends Zend_Cache_Backend implemen
     /**
     /**
      * Store data
      * Store data
      *
      *
-     * @var mixed  $data        Object to store
-     * @var string $id          Cache id
-     * @var int    $timeToLive  Time to live in seconds
+     * @param mixed  $data        Object to store
+     * @param string $id          Cache id
+     * @param int    $timeToLive  Time to live in seconds
      * @throws Zend_Cache_Exception
      * @throws Zend_Cache_Exception
      */
      */
     abstract protected function _store($data, $id, $timeToLive);
     abstract protected function _store($data, $id, $timeToLive);
@@ -61,7 +61,7 @@ abstract class Zend_Cache_Backend_ZendServer extends Zend_Cache_Backend implemen
     /**
     /**
      * Fetch data
      * Fetch data
      *
      *
-     * @var string $id          Cache id
+     * @param string $id          Cache id
      * @throws Zend_Cache_Exception
      * @throws Zend_Cache_Exception
      */
      */
     abstract protected function _fetch($id);
     abstract protected function _fetch($id);
@@ -69,7 +69,7 @@ abstract class Zend_Cache_Backend_ZendServer extends Zend_Cache_Backend implemen
     /**
     /**
      * Unset data
      * Unset data
      *
      *
-     * @var string $id          Cache id
+     * @param string $id          Cache id
      */
      */
     abstract protected function _unset($id);
     abstract protected function _unset($id);
 
 

+ 5 - 5
library/Zend/Cache/Backend/ZendServer/Disk.php

@@ -53,9 +53,9 @@ class Zend_Cache_Backend_ZendServer_Disk extends Zend_Cache_Backend_ZendServer i
 	/**
 	/**
      * Store data
      * Store data
      *
      *
-     * @var mixed  $data        Object to store
-     * @var string $id          Cache id
-     * @var int    $timeToLive  Time to live in seconds
+     * @param mixed  $data        Object to store
+     * @param string $id          Cache id
+     * @param int    $timeToLive  Time to live in seconds
      * @return boolean true if no problem
      * @return boolean true if no problem
      */
      */
     protected function _store($data, $id, $timeToLive)
     protected function _store($data, $id, $timeToLive)
@@ -72,7 +72,7 @@ class Zend_Cache_Backend_ZendServer_Disk extends Zend_Cache_Backend_ZendServer i
     /**
     /**
      * Fetch data
      * Fetch data
      *
      *
-     * @var string $id          Cache id
+     * @param string $id          Cache id
      */
      */
     protected function _fetch($id)
     protected function _fetch($id)
     {
     {
@@ -82,7 +82,7 @@ class Zend_Cache_Backend_ZendServer_Disk extends Zend_Cache_Backend_ZendServer i
     /**
     /**
      * Unset data
      * Unset data
      *
      *
-     * @var string $id          Cache id
+     * @param string $id          Cache id
      * @return boolean true if no problem
      * @return boolean true if no problem
      */
      */
     protected function _unset($id)
     protected function _unset($id)

+ 5 - 5
library/Zend/Cache/Backend/ZendServer/ShMem.php

@@ -53,9 +53,9 @@ class Zend_Cache_Backend_ZendServer_ShMem extends Zend_Cache_Backend_ZendServer
     /**
     /**
      * Store data
      * Store data
      *
      *
-     * @var mixed  $data        Object to store
-     * @var string $id          Cache id
-     * @var int    $timeToLive  Time to live in seconds
+     * @param mixed  $data        Object to store
+     * @param string $id          Cache id
+     * @param int    $timeToLive  Time to live in seconds
      *
      *
      */
      */
     protected function _store($data, $id, $timeToLive)
     protected function _store($data, $id, $timeToLive)
@@ -72,7 +72,7 @@ class Zend_Cache_Backend_ZendServer_ShMem extends Zend_Cache_Backend_ZendServer
     /**
     /**
      * Fetch data
      * Fetch data
      *
      *
-     * @var string $id          Cache id
+     * @param string $id          Cache id
      */
      */
     protected function _fetch($id)
     protected function _fetch($id)
     {
     {
@@ -82,7 +82,7 @@ class Zend_Cache_Backend_ZendServer_ShMem extends Zend_Cache_Backend_ZendServer
     /**
     /**
      * Unset data
      * Unset data
      *
      *
-     * @var string $id          Cache id
+     * @param string $id          Cache id
      * @return boolean true if no problem
      * @return boolean true if no problem
      */
      */
     protected function _unset($id)
     protected function _unset($id)