Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'feature/docblock-simplification' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 14 changed files with 0 additions and 71 deletions.
6 changes: 0 additions & 6 deletions src/BigInteger/Adapter/AdapterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,10 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger\Adapter;

/**
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
interface AdapterInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/BigInteger/Adapter/Bcmath.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger\Adapter;
Expand All @@ -14,10 +13,6 @@

/**
* Bcmath extension adapter
*
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
class Bcmath implements AdapterInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/BigInteger/Adapter/Gmp.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger\Adapter;
Expand All @@ -14,10 +13,6 @@

/**
* GMP extension adapter
*
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
class Gmp implements AdapterInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/BigInteger/AdapterPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger;
Expand All @@ -18,10 +17,6 @@
* Enforces that adapters retrieved are instances of
* Adapter\AdapterInterface. Additionally, it registers a number of default
* adapters available.
*
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
class AdapterPluginManager extends AbstractPluginManager
{
Expand Down
6 changes: 0 additions & 6 deletions src/BigInteger/BigInteger.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,10 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger;

/**
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
abstract class BigInteger
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/BigInteger/Exception/DivisionByZeroException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger\Exception;

/**
* Division by zero exception
*
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
class DivisionByZeroException extends RuntimeException implements ExceptionInterface
{}
5 changes: 0 additions & 5 deletions src/BigInteger/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger\Exception;
Expand All @@ -14,10 +13,6 @@

/**
* Invalid argument exception
*
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
interface ExceptionInterface extends Exception\ExceptionInterface
{}
5 changes: 0 additions & 5 deletions src/BigInteger/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger\Exception;
Expand All @@ -14,10 +13,6 @@

/**
* Invalid argument exception
*
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
class InvalidArgumentException extends Exception\InvalidArgumentException implements ExceptionInterface
{}
5 changes: 0 additions & 5 deletions src/BigInteger/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\BigInteger\Exception;
Expand All @@ -14,10 +13,6 @@

/**
* Runtime exception
*
* @category Zend
* @package Zend_Math
* @subpackage BigInteger
*/
class RuntimeException extends Exception\RuntimeException implements ExceptionInterface
{}
5 changes: 0 additions & 5 deletions src/Exception/DomainException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\Exception;

/**
* Invalid argument exception
*
* @category Zend
* @package Zend_Math
* @subpackage Exception
*/
class DomainException extends \DomainException implements ExceptionInterface
{}
5 changes: 0 additions & 5 deletions src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\Exception;

/**
* @category Zend
* @package Zend_Math
*/
interface ExceptionInterface
{}
5 changes: 0 additions & 5 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\Exception;

/**
* Invalid argument exception
*
* @category Zend
* @package Zend_Math
* @subpackage Exception
*/
class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
Expand Down
5 changes: 0 additions & 5 deletions src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math\Exception;

/**
* Runtime argument exception
*
* @category Zend
* @package Zend_Math
* @subpackage Exception
*/
class RuntimeException extends \RuntimeException implements
ExceptionInterface
Expand Down
4 changes: 0 additions & 4 deletions src/Rand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Math
*/

namespace Zend\Math;

/**
* Pseudorandom number generator (PRNG)
*
* @category Zend
* @package Zend_Math
*/
abstract class Rand
{
Expand Down

0 comments on commit 9ded697

Please sign in to comment.