Просмотр исходного кода

Fixes DocBlocks in Zend_Barcode_Object_ObjectAbstract

Frank Brückner 11 лет назад
Родитель
Сommit
ce3e66d463
1 измененных файлов с 57 добавлено и 34 удалено
  1. 57 34
      library/Zend/Barcode/Object/ObjectAbstract.php

+ 57 - 34
library/Zend/Barcode/Object/ObjectAbstract.php

@@ -213,8 +213,8 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Constructor
+     *
      * @param array|Zend_Config $options
-     * @return void
      */
     public function __construct($options = null)
     {
@@ -304,7 +304,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * Set height of the barcode bar
      * @param integer $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setBarHeight($value)
     {
@@ -331,7 +331,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * Set thickness of thin bar
      * @param integer $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setBarThinWidth($value)
     {
@@ -358,7 +358,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * Set thickness of thick bar
      * @param integer $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setBarThickWidth($value)
     {
@@ -386,7 +386,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * thinBarWidth - thickBarWidth - barHeight - fontSize
      * @param float $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setFactor($value)
     {
@@ -414,7 +414,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * Set color of the barcode and text
      * @param string $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setForeColor($value)
     {
@@ -444,7 +444,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * Set the color of the background
      * @param integer $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setBackgroundColor($value)
     {
@@ -526,7 +526,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * Set orientation of barcode and text
      * @param float $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setOrientation($value)
     {
@@ -569,8 +569,10 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Automatically add leading zeros if barcode length is fixed
-     * @param string $text
+     *
+     * @param string  $text
      * @param boolean $withoutChecksum
+     * @return string
      */
     protected function _addLeadingZeros($text, $withoutChecksum = false)
     {
@@ -637,7 +639,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * of the characters to the position of the bars
      * @param boolean $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setStretchText($value)
     {
@@ -686,7 +688,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * added to the barcode text
      * @param boolean $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setWithChecksumInText($value)
     {
@@ -724,7 +726,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      *  - if string, $value is assumed to be the path to a TTF font
      * @param integer|string $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setFont($value)
     {
@@ -766,7 +768,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
      * Set the size of the font in case of TTF
      * @param float $value
      * @return Zend_Barcode_Object
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     public function setFontSize($value)
     {
@@ -848,13 +850,14 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Add a text drawing instruction in the set of instructions
-     * @param string $text
-     * @param float $size
-     * @param array $position
-     * @param string $font
-     * @param integer $color
-     * @param string $alignment
-     * @param float $orientation
+     *
+     * @param string    $text
+     * @param float     $size
+     * @param array     $position
+     * @param string    $font
+     * @param integer   $color
+     * @param string    $alignment
+     * @param float|int $orientation
      */
     protected function _addText(
         $text,
@@ -882,7 +885,8 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Checking of parameters after all settings
-     * @return void
+     *
+     * @return bool
      */
     public function checkParams()
     {
@@ -894,8 +898,10 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Check if a text is really provided to barcode
+     *
+     * @param string|null $value
      * @return void
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     protected function _checkText($value = null)
     {
@@ -913,10 +919,11 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Check the ratio between the thick and the thin bar
-     * @param integer $min
-     * @param integer $max
+     *
+     * @param int $min
+     * @param int $max
      * @return void
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     protected function _checkRatio($min = 2, $max = 3)
     {
@@ -934,8 +941,9 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Drawing with an angle is just allow TTF font
+     *
      * @return void
-     * @throw Zend_Barcode_Object_Exception
+     * @throws Zend_Barcode_Object_Exception
      */
     protected function _checkFontAndOrientation()
     {
@@ -948,8 +956,8 @@ abstract class Zend_Barcode_Object_ObjectAbstract
     }
 
     /**
-     * Width of the result image
-     * (before any rotation)
+     * Width of the result image (before any rotation)
+     *
      * @return integer
      */
     protected function _calculateWidth()
@@ -961,13 +969,15 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Calculate the width of the barcode
+     *
      * @return integer
      */
     abstract protected function _calculateBarcodeWidth();
 
     /**
      * Height of the result object
-     * @return integer
+     *
+     * @return int
      */
     protected function _calculateHeight()
     {
@@ -978,7 +988,8 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Height of the barcode
-     * @return integer
+     *
+     * @return int
      */
     protected function _calculateBarcodeHeight()
     {
@@ -993,7 +1004,9 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Get height of the result object
-     * @return integer
+     *
+     * @param bool $recalculate
+     * @return int
      */
     public function getHeight($recalculate = false)
     {
@@ -1007,7 +1020,9 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Get width of the result object
-     * @return integer
+     *
+     * @param bool $recalculate
+     * @return int
      */
     public function getWidth($recalculate = false)
     {
@@ -1022,7 +1037,8 @@ abstract class Zend_Barcode_Object_ObjectAbstract
     /**
      * Calculate the offset from the left of the object
      * if an orientation is activated
-     * @param boolean $recalculate
+     *
+     * @param bool $recalculate
      * @return float
      */
     public function getOffsetLeft($recalculate = false)
@@ -1049,7 +1065,8 @@ abstract class Zend_Barcode_Object_ObjectAbstract
     /**
      * Calculate the offset from the top of the object
      * if an orientation is activated
-     * @param boolean $recalculate
+     *
+     * @param bool $recalculate
      * @return float
      */
     public function getOffsetTop($recalculate = false)
@@ -1075,6 +1092,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Apply rotation on a point in X/Y dimensions
+     *
      * @param float $x1     x-position before rotation
      * @param float $y1     y-position before rotation
      * @return array        Array of two elements corresponding to the new XY point
@@ -1092,6 +1110,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Complete drawing of the barcode
+     *
      * @return array Table of instructions
      */
     public function draw()
@@ -1105,6 +1124,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Draw the barcode
+     *
      * @return void
      */
     protected function _drawBarcode()
@@ -1162,6 +1182,7 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Partial function to draw border
+     *
      * @return void
      */
     protected function _drawBorder()
@@ -1241,8 +1262,10 @@ abstract class Zend_Barcode_Object_ObjectAbstract
 
     /**
      * Standard validation for most of barcode objects
+     *
      * @param string $value
      * @param array  $options
+     * @throws Zend_Barcode_Object_Exception
      */
     protected function _validateText($value, $options = array())
     {