for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PEIP\Data;
/*
* This file is part of the PEIP package.
* (c) 2009-2016 Timo Michna <timomichna/yahoo.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* ParameterCollection.
* @author Timo Michna <timomichna/yahoo.de>
* @extends \PEIP\Data\ParameterHolder
* @implements \PEIP\INF\Data\ParameterHolder, ArrayAccess
class ParameterCollection extends \PEIP\Data\ParameterHolder implements \ArrayAccess
{
* @param $offset
* @return
public function offsetExists($offset)
return $this->hasParameter($offset);
}
public function offsetGet($offset)
return $this->getParameter($offset);
* @param $name
public function offsetUnset($name)
$this->deleteParameter($name);
public function offsetSet($offset, $name)
$this->setParameter($offeset, $name);
$offeset
$offset
This check looks for variables that are accessed but have not been defined. It raises an issue if it finds another variable that has a similar name.
The variable may have been renamed without also renaming all references.
This check looks for variables that are accessed but have not been defined. It raises an issue if it finds another variable that has a similar name.
The variable may have been renamed without also renaming all references.