PHP_CodeSniffer
[ class tree: PHP_CodeSniffer ] [ index: PHP_CodeSniffer ] [ all elements ]

Class: Squiz_Sniffs_PHP_DisallowSizeFunctionsInLoopsSniff

Source Location: /PHP_CodeSniffer-2.7.1/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowSizeFunctionsInLoopsSniff.php

Class Overview


Squiz_Sniffs_PHP_DisallowSizeFunctionsInLoopsSniff.


Author(s):

Version:

  • Release: 2.7.1

Copyright:

  • 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)

Variables

Methods


Inherited Variables

Inherited Methods


Class Details

[line 28]
Squiz_Sniffs_PHP_DisallowSizeFunctionsInLoopsSniff.

Bans the use of size-based functions in loop conditions.



[ Top ]


Class Variables

$forbiddenFunctions = array(
                                     'PHP' => array(
                                               'sizeof' => true,
                                               'strlen' => true,
                                               'count'  => true,
                                              ),'JS'=>array('length'=>true),)

[line 46]

An array of functions we don't want in the condition of loops.
  • Access: protected

Type:   mixed


[ Top ]

$supportedTokenizers = array(
                                   'PHP',
                                   'JS',
                                  )

[line 36]

A list of tokenizers this sniff supports.
  • Access: public

Type:   array


[ Top ]



Method Detail

process   [line 80]

void process( PHP_CodeSniffer_File $phpcsFile, int $stackPtr)

Processes this test, when one of its tokens is encountered.
  • Access: public

Parameters:

PHP_CodeSniffer_File   $phpcsFile   —  The file being scanned.
int   $stackPtr   —  The position of the current token in the stack passed in $tokens.

[ Top ]

register   [line 61]

array register( )

Returns an array of tokens this test wants to listen for.
  • Access: public

[ Top ]


Documentation generated on Mon, 11 Mar 2019 14:50:44 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.