[2.3] [Config] [Console] [DependencyInjection] [DomCrawler] [Form] [HttpKernel] [PropertyAccess] [Security] [Translation] [Yaml] static code analysis, code cleanup

This commit is contained in:
Vladimir Reznichenko 2015-03-06 20:37:36 +01:00 committed by Fabien Potencier
parent d3f049dbbe
commit f13b5f7583
22 changed files with 41 additions and 43 deletions

View File

@ -480,7 +480,7 @@ class ArrayNodeDefinition extends NodeDefinition implements ParentNodeDefinition
); );
} }
if (null !== $this->key && (null === $this->addDefaultChildren || is_integer($this->addDefaultChildren) && $this->addDefaultChildren > 0)) { if (null !== $this->key && (null === $this->addDefaultChildren || is_int($this->addDefaultChildren) && $this->addDefaultChildren > 0)) {
throw new InvalidDefinitionException( throw new InvalidDefinitionException(
sprintf('->addDefaultChildrenIfNoneSet() should set default children names as ->useAttributeAsKey() is used at path "%s"', $path) sprintf('->addDefaultChildrenIfNoneSet() should set default children names as ->useAttributeAsKey() is used at path "%s"', $path)
); );

View File

@ -131,7 +131,7 @@ class PrototypedArrayNode extends ArrayNode
if (null === $children) { if (null === $children) {
$this->defaultChildren = array('defaults'); $this->defaultChildren = array('defaults');
} else { } else {
$this->defaultChildren = is_integer($children) && $children > 0 ? range(1, $children) : (array) $children; $this->defaultChildren = is_int($children) && $children > 0 ? range(1, $children) : (array) $children;
} }
} }

View File

@ -215,7 +215,7 @@ class XmlUtils
LIBXML_ERR_WARNING == $error->level ? 'WARNING' : 'ERROR', LIBXML_ERR_WARNING == $error->level ? 'WARNING' : 'ERROR',
$error->code, $error->code,
trim($error->message), trim($error->message),
$error->file ? $error->file : 'n/a', $error->file ?: 'n/a',
$error->line, $error->line,
$error->column $error->column
); );

View File

@ -149,7 +149,7 @@ class OutputFormatterStyle implements OutputFormatterStyleInterface
)); ));
} }
if (false === array_search(static::$availableOptions[$option], $this->options)) { if (!in_array(static::$availableOptions[$option], $this->options)) {
$this->options[] = static::$availableOptions[$option]; $this->options[] = static::$availableOptions[$option];
} }
} }

View File

@ -159,7 +159,7 @@ class DialogHelperTest extends \PHPUnit_Framework_TestCase
protected function getInputStream($input) protected function getInputStream($input)
{ {
$stream = fopen('php://memory', 'r+', false); $stream = fopen('php://memory', 'r+', false);
fputs($stream, $input); fwrite($stream, $input);
rewind($stream); rewind($stream);
return $stream; return $stream;

View File

@ -1087,7 +1087,7 @@ EOF;
$behavior[$id] = $argument->getInvalidBehavior(); $behavior[$id] = $argument->getInvalidBehavior();
} }
$calls[$id] += 1; ++$calls[$id];
} }
} }
} }
@ -1345,12 +1345,12 @@ EOF;
} }
while ($i > 0) { while ($i > 0) {
$i -= 1; --$i;
$name .= $nonFirstChars[$i%$nonFirstCharsLength]; $name .= $nonFirstChars[$i%$nonFirstCharsLength];
$i = intval($i/$nonFirstCharsLength); $i = intval($i/$nonFirstCharsLength);
} }
$this->variableCount += 1; ++$this->variableCount;
// check that the name is not reserved // check that the name is not reserved
if (in_array($name, $this->reservedVariables, true)) { if (in_array($name, $this->reservedVariables, true)) {

View File

@ -259,7 +259,8 @@ class ContainerBuilderTest extends \PHPUnit_Framework_TestCase
$builder->setResourceTracking(false); $builder->setResourceTracking(false);
$builderCompilerPasses = $builder->getCompiler()->getPassConfig()->getPasses(); $builderCompilerPasses = $builder->getCompiler()->getPassConfig()->getPasses();
$builder->addCompilerPass($this->getMock('Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface')); $builder->addCompilerPass($this->getMock('Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface'));
$this->assertEquals(sizeof($builderCompilerPasses) + 1, sizeof($builder->getCompiler()->getPassConfig()->getPasses()));
$this->assertCount(count($builder->getCompiler()->getPassConfig()->getPasses()) - 1, $builderCompilerPasses);
} }
/** /**

View File

@ -89,8 +89,8 @@ class PhpDumperTest extends \PHPUnit_Framework_TestCase
$container = new ContainerBuilder(); $container = new ContainerBuilder();
$container->setDefinition('test', $definition); $container->setDefinition('test', $definition);
$container->setParameter('foo', 'wiz'.dirname(dirname(__FILE__))); $container->setParameter('foo', 'wiz'.dirname(__DIR__));
$container->setParameter('bar', dirname(__FILE__)); $container->setParameter('bar', __DIR__);
$container->setParameter('baz', '%bar%/PhpDumperTest.php'); $container->setParameter('baz', '%bar%/PhpDumperTest.php');
$container->setParameter('buz', dirname(dirname(__DIR__))); $container->setParameter('buz', dirname(dirname(__DIR__)));
$container->compile(); $container->compile();

View File

@ -316,7 +316,7 @@ EOF
{ {
$crawler = $this->createTestCrawler()->filterXPath('//ul[1]/li'); $crawler = $this->createTestCrawler()->filterXPath('//ul[1]/li');
$nodes = $crawler->reduce(function ($node, $i) { $nodes = $crawler->reduce(function ($node, $i) {
return $i == 1 ? false : true; return $i !== 1;
}); });
$this->assertNotSame($nodes, $crawler, '->reduce() returns a new instance of a crawler'); $this->assertNotSame($nodes, $crawler, '->reduce() returns a new instance of a crawler');
$this->assertInstanceOf('Symfony\\Component\\DomCrawler\\Crawler', $nodes, '->reduce() returns a new instance of a crawler'); $this->assertInstanceOf('Symfony\\Component\\DomCrawler\\Crawler', $nodes, '->reduce() returns a new instance of a crawler');

View File

@ -67,8 +67,7 @@ abstract class AbstractRendererEngine implements FormRendererEngineInterface
// Unset instead of resetting to an empty array, in order to allow // Unset instead of resetting to an empty array, in order to allow
// implementations (like TwigRendererEngine) to check whether $cacheKey // implementations (like TwigRendererEngine) to check whether $cacheKey
// is set at all. // is set at all.
unset($this->resources[$cacheKey]); unset($this->resources[$cacheKey], $this->resourceHierarchyLevels[$cacheKey]);
unset($this->resourceHierarchyLevels[$cacheKey]);
} }
/** /**

View File

@ -138,8 +138,7 @@ class FormBuilder extends FormConfigBuilder implements \IteratorAggregate, FormB
throw new BadMethodCallException('FormBuilder methods cannot be accessed anymore once the builder is turned into a FormConfigInterface instance.'); throw new BadMethodCallException('FormBuilder methods cannot be accessed anymore once the builder is turned into a FormConfigInterface instance.');
} }
unset($this->unresolvedChildren[$name]); unset($this->unresolvedChildren[$name], $this->children[$name]);
unset($this->children[$name]);
return $this; return $this;
} }

View File

@ -279,8 +279,7 @@ class FormRenderer implements FormRendererInterface
// Clear the caches if they were filled for the first time within // Clear the caches if they were filled for the first time within
// this function call // this function call
if ($hierarchyInit) { if ($hierarchyInit) {
unset($this->blockNameHierarchyMap[$viewAndSuffixCacheKey]); unset($this->blockNameHierarchyMap[$viewAndSuffixCacheKey], $this->hierarchyLevelMap[$viewAndSuffixCacheKey]);
unset($this->hierarchyLevelMap[$viewAndSuffixCacheKey]);
} }
if ($varInit) { if ($varInit) {

View File

@ -54,7 +54,7 @@ abstract class FormPerformanceTestCase extends FormIntegrationTestCase
*/ */
public function setMaxRunningTime($maxRunningTime) public function setMaxRunningTime($maxRunningTime)
{ {
if (is_integer($maxRunningTime) && $maxRunningTime >= 0) { if (is_int($maxRunningTime) && $maxRunningTime >= 0) {
$this->maxRunningTime = $maxRunningTime; $this->maxRunningTime = $maxRunningTime;
} else { } else {
throw new \InvalidArgumentException(); throw new \InvalidArgumentException();

View File

@ -107,8 +107,7 @@ class RouterListener implements EventSubscriberInterface
} }
$request->attributes->add($parameters); $request->attributes->add($parameters);
unset($parameters['_route']); unset($parameters['_route'], $parameters['_controller']);
unset($parameters['_controller']);
$request->attributes->set('_route_params', $parameters); $request->attributes->set('_route_params', $parameters);
} catch (ResourceNotFoundException $e) { } catch (ResourceNotFoundException $e) {
$message = sprintf('No route found for "%s %s"', $request->getMethod(), $request->getPathInfo()); $message = sprintf('No route found for "%s %s"', $request->getMethod(), $request->getPathInfo());

View File

@ -32,7 +32,7 @@ class LoggerDataCollectorTest extends \PHPUnit_Framework_TestCase
$this->assertSame('logger', $c->getName()); $this->assertSame('logger', $c->getName());
$this->assertSame($nb, $c->countErrors()); $this->assertSame($nb, $c->countErrors());
$this->assertSame($expectedLogs ? $expectedLogs : $logs, $c->getLogs()); $this->assertSame($expectedLogs ?: $logs, $c->getLogs());
$this->assertSame($expectedDeprecationCount, $c->countDeprecations()); $this->assertSame($expectedDeprecationCount, $c->countDeprecations());
} }

View File

@ -264,8 +264,7 @@ class PropertyPathBuilder
// All remaining elements should be removed // All remaining elements should be removed
for (; $i < $length; ++$i) { for (; $i < $length; ++$i) {
unset($this->elements[$i]); unset($this->elements[$i], $this->isIndex[$i]);
unset($this->isIndex[$i]);
} }
} else { } else {
$diff = $insertionLength - $cutLength; $diff = $insertionLength - $cutLength;

View File

@ -173,7 +173,8 @@ class AclProvider implements AclProviderInterface
} }
// Is it time to load the current batch? // Is it time to load the current batch?
if ((self::MAX_BATCH_SIZE === count($currentBatch) || ($i + 1) === $c) && count($currentBatch) > 0) { $currentBatchesCount = count($currentBatch);
if ($currentBatchesCount > 0 && (self::MAX_BATCH_SIZE === $currentBatchesCount || ($i + 1) === $c)) {
try { try {
$loadedBatch = $this->lookupObjectIdentities($currentBatch, $sids, $oidLookup); $loadedBatch = $this->lookupObjectIdentities($currentBatch, $sids, $oidLookup);
} catch (AclNotFoundException $aclNotFoundexception) { } catch (AclNotFoundException $aclNotFoundexception) {
@ -557,10 +558,11 @@ QUERY;
// attach ACL to the result set; even though we do not enforce that every // attach ACL to the result set; even though we do not enforce that every
// object identity has only one instance, we must make sure to maintain // object identity has only one instance, we must make sure to maintain
// referential equality with the oids passed to findAcls() // referential equality with the oids passed to findAcls()
if (!isset($oidCache[$objectIdentifier.$classType])) { $oidCacheKey = $objectIdentifier.$classType;
$oidCache[$objectIdentifier.$classType] = $acl->getObjectIdentity(); if (!isset($oidCache[$oidCacheKey])) {
$oidCache[$oidCacheKey] = $acl->getObjectIdentity();
} }
$result->attach($oidCache[$objectIdentifier.$classType], $acl); $result->attach($oidCache[$oidCacheKey], $acl);
// so, this hasn't been hydrated yet // so, this hasn't been hydrated yet
} else { } else {
// create object identity if we haven't done so yet // create object identity if we haven't done so yet
@ -668,7 +670,7 @@ QUERY;
// let's see if we have already hydrated this // let's see if we have already hydrated this
if (isset($acls[$parentId])) { if (isset($acls[$parentId])) {
$aclParentAclProperty->setValue($acl, $acls[$parentId]); $aclParentAclProperty->setValue($acl, $acls[$parentId]);
$processed += 1; ++$processed;
continue; continue;
} }

View File

@ -122,7 +122,7 @@ class AclProviderBenchmarkTest extends \PHPUnit_Framework_TestCase
if ($id === 1000 || ($id < 1500 && rand(0, 1))) { if ($id === 1000 || ($id < 1500 && rand(0, 1))) {
$this->insertClassStmt->execute(array($id, $this->getRandomString(rand(20, 100), 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\\_'))); $this->insertClassStmt->execute(array($id, $this->getRandomString(rand(20, 100), 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\\_')));
$id += 1; ++$id;
return $id-1; return $id-1;
} else { } else {
@ -148,7 +148,7 @@ class AclProviderBenchmarkTest extends \PHPUnit_Framework_TestCase
} }
$this->generateAces($classId, $id); $this->generateAces($classId, $id);
$id += 1; ++$id;
return $id-1; return $id-1;
} }
@ -163,7 +163,7 @@ class AclProviderBenchmarkTest extends \PHPUnit_Framework_TestCase
$this->getRandomString(rand(5, 30)), $this->getRandomString(rand(5, 30)),
rand(0, 1), rand(0, 1),
)); ));
$id += 1; ++$id;
return $id-1; return $id-1;
} else { } else {
@ -215,7 +215,7 @@ class AclProviderBenchmarkTest extends \PHPUnit_Framework_TestCase
rand(0, 1), rand(0, 1),
)); ));
$id += 1; ++$id;
} }
} }

View File

@ -41,7 +41,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase
for ($j = 1; $j <= 5000; $j++) { for ($j = 1; $j <= 5000; $j++) {
$k = 4 * $j - 1; $k = 4 * $j - 1;
$c[8 * $b[$k - 3] + 4 * $b[$k - 2] + 2 * $b[$k - 1] + $b[$k]] += 1; ++$c[8 * $b[$k - 3] + 4 * $b[$k - 2] + 2 * $b[$k - 1] + $b[$k]];
} }
$f = 0; $f = 0;
@ -73,14 +73,14 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase
$run = 6; $run = 6;
} }
$runs[$run] += 1; ++$runs[$run];
}; };
$currentRun = 0; $currentRun = 0;
$lastBit = null; $lastBit = null;
for ($i = 0; $i < 20000; $i++) { for ($i = 0; $i < 20000; $i++) {
if ($lastBit === $b[$i]) { if ($lastBit === $b[$i]) {
$currentRun += 1; ++$currentRun;
} else { } else {
if ($currentRun > 0) { if ($currentRun > 0) {
$addRun($currentRun); $addRun($currentRun);
@ -115,7 +115,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase
$lastBit = null; $lastBit = null;
for ($i = 0; $i < 20000; $i++) { for ($i = 0; $i < 20000; $i++) {
if ($lastBit === $b[$i]) { if ($lastBit === $b[$i]) {
$currentRun += 1; ++$currentRun;
} else { } else {
if ($currentRun > $longestRun) { if ($currentRun > $longestRun) {
$longestRun = $currentRun; $longestRun = $currentRun;

View File

@ -177,9 +177,9 @@ class ExceptionListenerTest extends \PHPUnit_Framework_TestCase
private function createExceptionListener(SecurityContextInterface $context = null, AuthenticationTrustResolverInterface $trustResolver = null, HttpUtils $httpUtils = null, AuthenticationEntryPointInterface $authenticationEntryPoint = null, $errorPage = null, AccessDeniedHandlerInterface $accessDeniedHandler = null) private function createExceptionListener(SecurityContextInterface $context = null, AuthenticationTrustResolverInterface $trustResolver = null, HttpUtils $httpUtils = null, AuthenticationEntryPointInterface $authenticationEntryPoint = null, $errorPage = null, AccessDeniedHandlerInterface $accessDeniedHandler = null)
{ {
return new ExceptionListener( return new ExceptionListener(
$context ? $context : $this->getMock('Symfony\Component\Security\Core\SecurityContextInterface'), $context ?: $this->getMock('Symfony\Component\Security\Core\SecurityContextInterface'),
$trustResolver ? $trustResolver : $this->getMock('Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface'), $trustResolver ?: $this->getMock('Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface'),
$httpUtils ? $httpUtils : $this->getMock('Symfony\Component\Security\Http\HttpUtils'), $httpUtils ?: $this->getMock('Symfony\Component\Security\Http\HttpUtils'),
'key', 'key',
$authenticationEntryPoint, $authenticationEntryPoint,
$errorPage, $errorPage,

View File

@ -137,7 +137,7 @@ class XliffFileLoader implements LoaderInterface
LIBXML_ERR_WARNING == $error->level ? 'WARNING' : 'ERROR', LIBXML_ERR_WARNING == $error->level ? 'WARNING' : 'ERROR',
$error->code, $error->code,
trim($error->message), trim($error->message),
$error->file ? $error->file : 'n/a', $error->file ?: 'n/a',
$error->line, $error->line,
$error->column $error->column
); );

View File

@ -273,7 +273,7 @@ class Inline
{ {
$output = array(); $output = array();
$len = strlen($sequence); $len = strlen($sequence);
$i += 1; ++$i;
// [foo, bar, ...] // [foo, bar, ...]
while ($i < $len) { while ($i < $len) {
@ -332,7 +332,7 @@ class Inline
{ {
$output = array(); $output = array();
$len = strlen($mapping); $len = strlen($mapping);
$i += 1; ++$i;
// {foo: bar, bar:foo, ...} // {foo: bar, bar:foo, ...}
while ($i < $len) { while ($i < $len) {