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 64 changed files with 0 additions and 285 deletions.
5 changes: 0 additions & 5 deletions src/AbstractFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,13 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

use Traversable;
use Zend\Stdlib\StringUtils;

/**
* @category Zend
* @package Zend_Filter
*/
abstract class AbstractFilter implements FilterInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/AbstractUnicode.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

/**
* @category Zend
* @package Zend_Filter
*/
abstract class AbstractUnicode extends AbstractFilter
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/BaseName.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

/**
* @category Zend
* @package Zend_Filter
*/
class BaseName extends AbstractFilter
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/Boolean.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,13 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

use Traversable;
use Zend\Stdlib\ArrayUtils;

/**
* @category Zend
* @package Zend_Filter
*/
class Boolean extends AbstractFilter
{
const TYPE_BOOLEAN = 1;
Expand Down
5 changes: 0 additions & 5 deletions src/Callback.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

use Traversable;

/**
* @category Zend
* @package Zend_Filter
*/
class Callback extends AbstractFilter
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/Compress.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter;
Expand All @@ -15,9 +14,6 @@

/**
* Compresses a given string
*
* @category Zend
* @package Zend_Filter
*/
class Compress extends AbstractFilter
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/AbstractCompressionAlgorithm.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Compress;
Expand All @@ -15,9 +14,6 @@

/**
* Abstract compression adapter
*
* @category Zend
* @package Zend_Filter
*/
abstract class AbstractCompressionAlgorithm implements CompressionAlgorithmInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/Bz2.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Compress;
Expand All @@ -14,9 +13,6 @@

/**
* Compression adapter for Bz2
*
* @category Zend
* @package Zend_Filter
*/
class Bz2 extends AbstractCompressionAlgorithm
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/CompressionAlgorithmInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Compress;

/**
* Compression interface
*
* @category Zend
* @package Zend_Filter
*/
interface CompressionAlgorithmInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/Gz.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Compress;
Expand All @@ -14,9 +13,6 @@

/**
* Compression adapter for Gzip (ZLib)
*
* @category Zend
* @package Zend_Filter
*/
class Gz extends AbstractCompressionAlgorithm
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/Lzf.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Compress;
Expand All @@ -14,9 +13,6 @@

/**
* Compression adapter for Lzf
*
* @category Zend
* @package Zend_Filter
*/
class Lzf implements CompressionAlgorithmInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/Rar.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Compress;
Expand All @@ -14,9 +13,6 @@

/**
* Compression adapter for Rar
*
* @category Zend
* @package Zend_Filter
*/
class Rar extends AbstractCompressionAlgorithm
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/Snappy.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Filter
*/

namespace Zend\Filter\Compress;
Expand All @@ -14,9 +13,6 @@

/**
* Compression adapter for php snappy (http://code.google.com/p/php-snappy/)
*
* @category Zend
* @package Zend_Filter
*/
class Snappy implements CompressionAlgorithmInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/Tar.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Compress;
Expand All @@ -17,9 +16,6 @@

/**
* Compression adapter for Tar
*
* @category Zend
* @package Zend_Filter
*/
class Tar extends AbstractCompressionAlgorithm
{
Expand Down
4 changes: 0 additions & 4 deletions src/Compress/Zip.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Compress;
Expand All @@ -15,9 +14,6 @@

/**
* Compression adapter for zip
*
* @category Zend
* @package Zend_Filter
*/
class Zip extends AbstractCompressionAlgorithm
{
Expand Down
4 changes: 0 additions & 4 deletions src/Decompress.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

/**
* Decompresses a given string
*
* @category Zend
* @package Zend_Filter
*/
class Decompress extends Compress
{
Expand Down
4 changes: 0 additions & 4 deletions src/Decrypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

/**
* Decrypts a given string
*
* @category Zend
* @package Zend_Filter
*/
class Decrypt extends Encrypt
{
Expand Down
5 changes: 0 additions & 5 deletions src/Digits.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

use Zend\Stdlib\StringUtils;

/**
* @category Zend
* @package Zend_Filter
*/
class Digits extends AbstractFilter
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/Dir.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@
* @link https://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_Filter
*/

namespace Zend\Filter;

/**
* @category Zend
* @package Zend_Filter
*/
class Dir extends AbstractFilter
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/Encrypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter;
Expand All @@ -15,9 +14,6 @@

/**
* Encrypts a given string
*
* @category Zend
* @package Zend_Filter
*/
class Encrypt extends AbstractFilter
{
Expand Down
4 changes: 0 additions & 4 deletions src/Encrypt/BlockCipher.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Encrypt;
Expand All @@ -21,9 +20,6 @@

/**
* Encryption adapter for Zend\Crypt\BlockCipher
*
* @category Zend
* @package Zend_Filter
*/
class BlockCipher implements EncryptionAlgorithmInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Encrypt/EncryptionAlgorithmInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link https://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_Filter
*/

namespace Zend\Filter\Encrypt;

/**
* Encryption interface
*
* @category Zend
* @package Zend_Filter
*/
interface EncryptionAlgorithmInterface
{
Expand Down
Loading

0 comments on commit 9418fac

Please sign in to comment.