mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-07 12:02:41 +00:00
Removed the @access and @static.
This commit is contained in:
parent
db80fe27e1
commit
9bc3e567c1
276 changed files with 0 additions and 2712 deletions
|
@ -67,7 +67,6 @@ class Helper extends Object {
|
|||
/**
|
||||
* Holds tag templates.
|
||||
*
|
||||
* @access public
|
||||
* @var array
|
||||
*/
|
||||
public $tags = array();
|
||||
|
@ -75,7 +74,6 @@ class Helper extends Object {
|
|||
/**
|
||||
* Holds the content to be cleaned.
|
||||
*
|
||||
* @access private
|
||||
* @var mixed
|
||||
*/
|
||||
private $__tainted = null;
|
||||
|
@ -83,7 +81,6 @@ class Helper extends Object {
|
|||
/**
|
||||
* Holds the cleaned content.
|
||||
*
|
||||
* @access private
|
||||
* @var mixed
|
||||
*/
|
||||
private $__cleaned = null;
|
||||
|
@ -548,7 +545,6 @@ class Helper extends Object {
|
|||
* @param string $key The name of the attribute to be set, defaults to 'name'
|
||||
* @return mixed If an array was given for $options, an array with $key set will be returned.
|
||||
* If a string was supplied a string will be returned.
|
||||
* @access protected
|
||||
* @todo Refactor this method to not have as many input/output options.
|
||||
*/
|
||||
protected function _name($options = array(), $field = null, $key = 'name') {
|
||||
|
@ -593,7 +589,6 @@ class Helper extends Object {
|
|||
* @param string $key The name of the attribute to be set, defaults to 'value'
|
||||
* @return mixed If an array was given for $options, an array with $key set will be returned.
|
||||
* If a string was supplied a string will be returned.
|
||||
* @access public
|
||||
* @todo Refactor this method to not have as many input/output options.
|
||||
*/
|
||||
public function value($options = array(), $field = null, $key = 'value') {
|
||||
|
@ -749,7 +744,6 @@ class Helper extends Object {
|
|||
* @param mixed $data
|
||||
* @param string $key
|
||||
* @return array
|
||||
* @access private
|
||||
*/
|
||||
private function __selectedArray($data, $key = 'id') {
|
||||
if (!is_array($data)) {
|
||||
|
@ -776,7 +770,6 @@ class Helper extends Object {
|
|||
* Resets the vars used by Helper::clean() to null
|
||||
*
|
||||
* @return void
|
||||
* @access private
|
||||
*/
|
||||
private function __reset() {
|
||||
$this->__tainted = null;
|
||||
|
@ -787,7 +780,6 @@ class Helper extends Object {
|
|||
* Removes harmful content from output
|
||||
*
|
||||
* @return void
|
||||
* @access private
|
||||
*/
|
||||
private function __clean() {
|
||||
if (get_magic_quotes_gpc()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue