Merge pull request #208 from bantu/cs-classcomment-wrongtagorder

CS: Fix "PEAR.Commenting.ClassComment.WrongTagOrder" sniff.

* bantu/cs-classcomment-wrongtagorder:
  CS: Fix "PEAR.Commenting.ClassComment.WrongTagOrder" sniff.
This commit is contained in:
Andreas Fischer 2013-12-11 23:30:13 +01:00
commit df8c3723aa
21 changed files with 21 additions and 22 deletions

View File

@ -124,10 +124,10 @@ define('CRYPT_AES_MODE_MCRYPT', CRYPT_MODE_MCRYPT);
/** /**
* Pure-PHP implementation of AES. * Pure-PHP implementation of AES.
* *
* @package Crypt_AES
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Crypt_AES
*/ */
class Crypt_AES extends Crypt_Rijndael class Crypt_AES extends Crypt_Rijndael
{ {

View File

@ -114,11 +114,11 @@ define('CRYPT_MODE_MCRYPT', 2);
/** /**
* Base Class for all Crypt_* cipher classes * Base Class for all Crypt_* cipher classes
* *
* @package Crypt_Base
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @author Hans-Juergen Petrich <petrich@tronic-media.com> * @author Hans-Juergen Petrich <petrich@tronic-media.com>
* @version 1.0.0 * @version 1.0.0
* @access public * @access public
* @package Crypt_Base
*/ */
class Crypt_Base class Crypt_Base
{ {

View File

@ -119,11 +119,11 @@ define('CRYPT_BLOWFISH_MODE_MCRYPT', CRYPT_MODE_MCRYPT);
/** /**
* Pure-PHP implementation of Blowfish. * Pure-PHP implementation of Blowfish.
* *
* @package Crypt_Blowfish
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @author Hans-Juergen Petrich <petrich@tronic-media.com> * @author Hans-Juergen Petrich <petrich@tronic-media.com>
* @version 1.0 * @version 1.0
* @access public * @access public
* @package Crypt_Blowfish
*/ */
class Crypt_Blowfish extends Crypt_Base class Crypt_Blowfish extends Crypt_Base
{ {

View File

@ -138,10 +138,10 @@ define('CRYPT_DES_MODE_MCRYPT', CRYPT_MODE_MCRYPT);
/** /**
* Pure-PHP implementation of DES. * Pure-PHP implementation of DES.
* *
* @package Crypt_DES
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Crypt_DES
*/ */
class Crypt_DES extends Crypt_Base class Crypt_DES extends Crypt_Base
{ {

View File

@ -75,10 +75,10 @@ define('CRYPT_HASH_MODE_HASH', 3);
/** /**
* Pure-PHP implementations of keyed-hash message authentication codes (HMACs) and various cryptographic hashing functions. * Pure-PHP implementations of keyed-hash message authentication codes (HMACs) and various cryptographic hashing functions.
* *
* @package Crypt_Hash
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Crypt_Hash
*/ */
class Crypt_Hash class Crypt_Hash
{ {

View File

@ -116,9 +116,9 @@ define('CRYPT_RC2_MODE_MCRYPT', CRYPT_MODE_MCRYPT);
/** /**
* Pure-PHP implementation of RC2. * Pure-PHP implementation of RC2.
* *
* @package Crypt_RC2
* @version 0.1.1 * @version 0.1.1
* @access public * @access public
* @package Crypt_RC2
*/ */
class Crypt_RC2 extends Crypt_Base class Crypt_RC2 extends Crypt_Base
{ {

View File

@ -94,10 +94,10 @@ define('CRYPT_RC4_DECRYPT', 1);
/** /**
* Pure-PHP implementation of RC4. * Pure-PHP implementation of RC4.
* *
* @package Crypt_RC4
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Crypt_RC4
*/ */
class Crypt_RC4 extends Crypt_Base class Crypt_RC4 extends Crypt_Base
{ {

View File

@ -239,10 +239,10 @@ define('CRYPT_RSA_PUBLIC_FORMAT_PKCS1', 7);
/** /**
* Pure-PHP PKCS#1 compliant implementation of RSA. * Pure-PHP PKCS#1 compliant implementation of RSA.
* *
* @package Crypt_RSA
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Crypt_RSA
*/ */
class Crypt_RSA class Crypt_RSA
{ {

View File

@ -135,10 +135,10 @@ define('CRYPT_RIJNDAEL_MODE_MCRYPT', CRYPT_MODE_MCRYPT);
/** /**
* Pure-PHP implementation of Rijndael. * Pure-PHP implementation of Rijndael.
* *
* @package Crypt_Rijndael
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Crypt_Rijndael
*/ */
class Crypt_Rijndael extends Crypt_Base class Crypt_Rijndael extends Crypt_Base
{ {

View File

@ -76,10 +76,10 @@ define('CRYPT_DES_MODE_CBC3', CRYPT_DES_MODE_CBC);
/** /**
* Pure-PHP implementation of Triple DES. * Pure-PHP implementation of Triple DES.
* *
* @package Crypt_TripleDES
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Crypt_TripleDES
*/ */
class Crypt_TripleDES extends Crypt_DES class Crypt_TripleDES extends Crypt_DES
{ {

View File

@ -119,11 +119,11 @@ define('CRYPT_TWOFISH_MODE_MCRYPT', CRYPT_MODE_MCRYPT);
/** /**
* Pure-PHP implementation of Twofish. * Pure-PHP implementation of Twofish.
* *
* @package Crypt_Twofish
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @author Hans-Juergen Petrich <petrich@tronic-media.com> * @author Hans-Juergen Petrich <petrich@tronic-media.com>
* @version 1.0 * @version 1.0
* @access public * @access public
* @package Crypt_Twofish
*/ */
class Crypt_Twofish extends Crypt_Base class Crypt_Twofish extends Crypt_Base
{ {

View File

@ -39,10 +39,10 @@
/** /**
* Pure-PHP ANSI Decoder * Pure-PHP ANSI Decoder
* *
* @package File_ANSI
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.3.0 * @version 0.3.0
* @access public * @access public
* @package File_ANSI
*/ */
class File_ANSI class File_ANSI
{ {

View File

@ -110,10 +110,10 @@ define('FILE_ASN1_TYPE_ANY', -2);
* *
* Bypass normal encoding rules in File_ASN1::encodeDER() * Bypass normal encoding rules in File_ASN1::encodeDER()
* *
* @package File_ASN1
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.3.0 * @version 0.3.0
* @access public * @access public
* @package File_ASN1
*/ */
class File_ASN1_Element class File_ASN1_Element
{ {
@ -141,10 +141,10 @@ class File_ASN1_Element
/** /**
* Pure-PHP ASN.1 Parser * Pure-PHP ASN.1 Parser
* *
* @package File_ASN1
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.3.0 * @version 0.3.0
* @access public * @access public
* @package File_ASN1
*/ */
class File_ASN1 class File_ASN1
{ {

View File

@ -123,10 +123,10 @@ define('FILE_X509_ATTR_REPLACE', -3); // Clear first, then add a value.
/** /**
* Pure-PHP X.509 Parser * Pure-PHP X.509 Parser
* *
* @package File_X509
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.3.1 * @version 0.3.1
* @access public * @access public
* @package File_X509
*/ */
class File_X509 class File_X509
{ {

View File

@ -173,10 +173,10 @@ define('MATH_BIGINTEGER_KARATSUBA_CUTOFF', 25);
* Pure-PHP arbitrary precision integer arithmetic library. Supports base-2, base-10, base-16, and base-256 * Pure-PHP arbitrary precision integer arithmetic library. Supports base-2, base-10, base-16, and base-256
* numbers. * numbers.
* *
* @package Math_BigInteger
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 1.0.0RC4 * @version 1.0.0RC4
* @access public * @access public
* @package Math_BigInteger
*/ */
class Math_BigInteger class Math_BigInteger
{ {

View File

@ -81,10 +81,10 @@ define('NET_SCP_SSH2', 2);
/** /**
* Pure-PHP implementations of SCP. * Pure-PHP implementations of SCP.
* *
* @package Net_SCP
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Net_SCP
*/ */
class Net_SCP class Net_SCP
{ {

View File

@ -115,10 +115,10 @@ define('NET_SFTP_RESUME_START', 8);
/** /**
* Pure-PHP implementations of SFTP. * Pure-PHP implementations of SFTP.
* *
* @package Net_SFTP
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Net_SFTP
*/ */
class Net_SFTP extends Net_SSH2 class Net_SFTP extends Net_SSH2
{ {

View File

@ -36,10 +36,10 @@
/** /**
* SFTP Stream Wrapper * SFTP Stream Wrapper
* *
* @package Net_SFTP_Stream
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.3.2 * @version 0.3.2
* @access public * @access public
* @package Net_SFTP_Stream
*/ */
class Net_SFTP_Stream class Net_SFTP_Stream
{ {

View File

@ -225,10 +225,10 @@ define('NET_SSH1_READ_REGEX', 2);
/** /**
* Pure-PHP implementation of SSHv1. * Pure-PHP implementation of SSHv1.
* *
* @package Net_SSH1
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Net_SSH1
*/ */
class Net_SSH1 class Net_SSH1
{ {

View File

@ -143,10 +143,10 @@ define('NET_SSH2_LOG_MAX_SIZE', 1024 * 1024);
/** /**
* Pure-PHP implementation of SSHv2. * Pure-PHP implementation of SSHv2.
* *
* @package Net_SSH2
* @author Jim Wigginton <terrafrost@php.net> * @author Jim Wigginton <terrafrost@php.net>
* @version 0.1.0 * @version 0.1.0
* @access public * @access public
* @package Net_SSH2
*/ */
class Net_SSH2 class Net_SSH2
{ {

View File

@ -14,7 +14,6 @@
<rule ref="PEAR.NamingConventions.ValidFunctionName.NotCamelCaps"><severity>0</severity></rule> <rule ref="PEAR.NamingConventions.ValidFunctionName.NotCamelCaps"><severity>0</severity></rule>
<rule ref="PEAR.Commenting.ClassComment.InvalidVersion"><severity>0</severity></rule> <rule ref="PEAR.Commenting.ClassComment.InvalidVersion"><severity>0</severity></rule>
<rule ref="PEAR.Commenting.ClassComment.MissingTag"><severity>0</severity></rule> <rule ref="PEAR.Commenting.ClassComment.MissingTag"><severity>0</severity></rule>
<rule ref="PEAR.Commenting.ClassComment.WrongTagOrder"><severity>0</severity></rule>
<rule ref="PEAR.Commenting.FileComment.EmptyCopyright"><severity>0</severity></rule> <rule ref="PEAR.Commenting.FileComment.EmptyCopyright"><severity>0</severity></rule>
<rule ref="PEAR.Commenting.FileComment.InvalidVersion"><severity>0</severity></rule> <rule ref="PEAR.Commenting.FileComment.InvalidVersion"><severity>0</severity></rule>
<rule ref="PEAR.Commenting.FunctionComment.ExtraParamComment"><severity>0</severity></rule> <rule ref="PEAR.Commenting.FunctionComment.ExtraParamComment"><severity>0</severity></rule>