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

[ZF-6570]needs to change copyright annotation tags:Zend_Crypt_Math

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15452 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 16 лет назад
Родитель
Сommit
35362fefe9

+ 12 - 4
library/Zend/Crypt/Math.php

@@ -1,5 +1,4 @@
 <?php
-
 /**
  * Zend Framework
  *
@@ -15,14 +14,23 @@
  *
  * @category   Zend
  * @package    Zend_Crypt
- * @copyright  Copyright (c) 2007 Pádraic Brady (http://blog.astrumfutura.com)
+ * @subpackage Math
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @version    $Id: Math.php 151 2008-06-16 16:50:42Z padraic $
+ * @version    $Id$
  */
 
-/** Zend_Crypt_Math_BigInteger */
+/**
+ * @see Zend_Crypt_Math_BigInteger
+ */
 require_once 'Zend/Crypt/Math/BigInteger.php';
 
+/**
+ * @category   Zend
+ * @package    Zend_Crypt
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ */
 class Zend_Crypt_Math extends Zend_Crypt_Math_BigInteger
 {
 

+ 10 - 14
library/Zend/Crypt/Math/BigInteger.php

@@ -12,22 +12,14 @@
  * obtain it through the world-wide-web, please send an email
  * to license@zend.com so we can send you a copy immediately.
  *
- * This class forms part of a proposal for the Zend Framework. The attached
- * copyright will be transferred to Zend Technologies USA Inc. upon future
- * acceptance of that proposal:
- *      http://framework.zend.com/wiki/pages/viewpage.action?pageId=20369
- *
  * @category   Zend
  * @package    Zend_Crypt
  * @subpackage Math
- * @copyright  Copyright (c) 2007 Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ * @version    $Id$
  */
 
-
-/** Zend_Crypt_Math_BigInteger_Interface */
-require_once 'Zend/Crypt/Math/BigInteger/Interface.php';
-
 /**
  * Support for arbitrary precision mathematics in PHP.
  *
@@ -46,8 +38,7 @@ require_once 'Zend/Crypt/Math/BigInteger/Interface.php';
  *
  * @category   Zend
  * @package    Zend_Crypt
- * @subpackage Math
- * @author     Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 class Zend_Crypt_Math_BigInteger
@@ -56,7 +47,7 @@ class Zend_Crypt_Math_BigInteger
     /**
      * Holds an instance of one of the three arbitrary precision wrappers.
      *
-     * @var Zend_Math_BigInteger_Interface
+     * @var Zend_Crypt_Math_BigInteger_Interface
      */
     protected $_math = null;
 
@@ -65,7 +56,8 @@ class Zend_Crypt_Math_BigInteger
      * arbitrary precision math and instantiates the suitable wrapper
      * object.
      *
-     * @throws  Zend_Math_BigInteger_Exception
+     * @param string $extension
+     * @throws  Zend_Crypt_Math_BigInteger_Exception
      */
     public function __construct($extension = null)
     {
@@ -92,6 +84,10 @@ class Zend_Crypt_Math_BigInteger
         return call_user_func_array(array($this->_math, $methodName), $args);
     }
 
+    /**
+     * @param string $extension
+     * @throws  Zend_Crypt_Math_BigInteger_Exception
+     */
     protected function _loadAdapter($extension = null)
     {
         if (is_null($extension)) {

+ 6 - 9
library/Zend/Crypt/Math/BigInteger/Bcmath.php

@@ -12,19 +12,17 @@
  * obtain it through the world-wide-web, please send an email
  * to license@zend.com so we can send you a copy immediately.
  *
- * This class forms part of a proposal for the Zend Framework. The attached
- * copyright will be transferred to Zend Technologies USA Inc. upon future
- * acceptance of that proposal:
- *      http://framework.zend.com/wiki/pages/viewpage.action?pageId=20369
- *
  * @category   Zend
  * @package    Zend_Crypt
  * @subpackage Math
- * @copyright  Copyright (c) 2007 Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ * @version    $Id$
  */
 
-/** Zend_Crypt_Math_BigInteger_Interface */
+/**
+ * @see Zend_Crypt_Math_BigInteger_Interface
+ */
 require_once 'Zend/Crypt/Math/BigInteger/Interface.php';
 
 /**
@@ -35,8 +33,7 @@ require_once 'Zend/Crypt/Math/BigInteger/Interface.php';
  *
  * @category   Zend
  * @package    Zend_Crypt
- * @subpackage Math
- * @author     Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 class Zend_Crypt_Math_BigInteger_Bcmath implements Zend_Crypt_Math_BigInteger_Interface

+ 11 - 12
library/Zend/Crypt/Math/BigInteger/Exception.php

@@ -1,5 +1,4 @@
 <?php
-
 /**
  * Zend Framework
  *
@@ -14,24 +13,24 @@
  * to license@zend.com so we can send you a copy immediately.
  *
  * @category   Zend
- * @package    Zend_Math
- * @copyright  Copyright (c) 2007 Pádraic Brady
+ * @package    Zend_Crypt
+ * @subpackage Math
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @version    $Id: Exception.php 102 2007-07-13 15:16:01Z padraic $
+ * @version    $Id$
  */
 
-
 /**
- * Zend_Math_Exception
+ * @see Zend_Crypt_Math_Exception
  */
-require_once 'Zend/Math/Exception.php';
-
+require_once 'Zend/Crypt/Math/Exception.php';
 
 /**
  * @category   Zend
- * @package    Zend_Math
- * @copyright  Copyright (c) 2007 Pádraic Brady
+ * @package    Zend_Crypt
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
-class Zend_Math_BigInteger_Exception extends Zend_Math_Exception
-{}
+class Zend_Crypt_Math_BigInteger_Exception extends Zend_Crypt_Math_Exception
+{
+}

+ 6 - 9
library/Zend/Crypt/Math/BigInteger/Gmp.php

@@ -12,19 +12,17 @@
  * obtain it through the world-wide-web, please send an email
  * to license@zend.com so we can send you a copy immediately.
  *
- * This class forms part of a proposal for the Zend Framework. The attached
- * copyright will be transferred to Zend Technologies USA Inc. upon future
- * acceptance of that proposal:
- *      http://framework.zend.com/wiki/pages/viewpage.action?pageId=20369
- *
  * @category   Zend
  * @package    Zend_Crypt
  * @subpackage Math
- * @copyright  Copyright (c) 2007 Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ * @version    $Id$
  */
 
-/** Zend_Crypt_Math_BigInteger_Interface */
+/**
+ * @see Zend_Crypt_Math_BigInteger_Interface
+ */
 require_once 'Zend/Crypt/Math/BigInteger/Interface.php';
 
 /**
@@ -35,8 +33,7 @@ require_once 'Zend/Crypt/Math/BigInteger/Interface.php';
  *
  * @category   Zend
  * @package    Zend_Crypt
- * @subpackage Math
- * @author     Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 class Zend_Crypt_Math_BigInteger_Gmp implements Zend_Crypt_Math_BigInteger_Interface

+ 3 - 8
library/Zend/Crypt/Math/BigInteger/Interface.php

@@ -12,16 +12,12 @@
  * obtain it through the world-wide-web, please send an email
  * to license@zend.com so we can send you a copy immediately.
  *
- * This class forms part of a proposal for the Zend Framework. The attached
- * copyright will be transferred to Zend Technologies USA Inc. upon future
- * acceptance of that proposal:
- *      http://framework.zend.com/wiki/pages/viewpage.action?pageId=20369
- *
  * @category   Zend
  * @package    Zend_Crypt
  * @subpackage Math
- * @copyright  Copyright (c) 2007 Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ * @version    $Id$
  */
 
 /**
@@ -32,8 +28,7 @@
  *
  * @category   Zend
  * @package    Zend_Crypt
- * @subpackage Math
- * @author     Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 interface Zend_Crypt_Math_BigInteger_Interface

+ 11 - 12
library/Zend/Crypt/Math/Exception.php

@@ -1,5 +1,4 @@
 <?php
-
 /**
  * Zend Framework
  *
@@ -14,24 +13,24 @@
  * to license@zend.com so we can send you a copy immediately.
  *
  * @category   Zend
- * @package    Zend_Math
- * @copyright  Copyright (c) 2007 Pádraic Brady
+ * @package    Zend_Crypt
+ * @subpackage Math
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @version    $Id: Exception.php 127 2007-09-17 13:48:20Z padraic $
+ * @version    $Id$
  */
 
-
 /**
- * Zend_Exception
+ * @see Zend_Crypt_Exception
  */
-require_once 'Zend/Exception.php';
-
+require_once 'Zend/Crypt/Exception.php';
 
 /**
  * @category   Zend
- * @package    Zend_Math
- * @copyright  Copyright (c) 2007 Pádraic Brady
+ * @package    Zend_Crypt
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
-class Zend_Crypt_Math_Exception extends Zend_Exception
-{}
+class Zend_Crypt_Math_Exception extends Zend_Crypt_Exception
+{
+}