Skip to content

Commit

Permalink
SCA: minor code tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kalessil authored and nicolas-grekas committed Apr 1, 2019
1 parent 7c18377 commit cc4529d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 17 deletions.
Expand Up @@ -96,11 +96,7 @@ private function getKernel()
->expects($this->atLeastOnce())
->method('has')
->will($this->returnCallback(function ($id) {
if ('console.command_loader' === $id) {
return false;
}

return true;
return 'console.command_loader' !== $id;
}))
;
$container
Expand Down
3 changes: 1 addition & 2 deletions src/Symfony/Component/Cache/Adapter/SimpleCacheAdapter.php
Expand Up @@ -13,13 +13,12 @@

use Psr\SimpleCache\CacheInterface;
use Symfony\Component\Cache\PruneableInterface;
use Symfony\Component\Cache\ResettableInterface;
use Symfony\Component\Cache\Traits\ProxyTrait;

/**
* @author Nicolas Grekas <p@tchwork.com>
*/
class SimpleCacheAdapter extends AbstractAdapter implements PruneableInterface, ResettableInterface
class SimpleCacheAdapter extends AbstractAdapter implements PruneableInterface
{
use ProxyTrait;

Expand Down
11 changes: 5 additions & 6 deletions src/Symfony/Component/Dotenv/Dotenv.php
Expand Up @@ -33,7 +33,6 @@ final class Dotenv
private $lineno;
private $data;
private $end;
private $state;
private $values;

/**
Expand Down Expand Up @@ -111,27 +110,27 @@ public function parse($data, $path = '.env')
$this->lineno = 1;
$this->cursor = 0;
$this->end = \strlen($this->data);
$this->state = self::STATE_VARNAME;
$state = self::STATE_VARNAME;
$this->values = [];
$name = '';

$this->skipEmptyLines();

while ($this->cursor < $this->end) {
switch ($this->state) {
switch ($state) {
case self::STATE_VARNAME:
$name = $this->lexVarname();
$this->state = self::STATE_VALUE;
$state = self::STATE_VALUE;
break;

case self::STATE_VALUE:
$this->values[$name] = $this->lexValue();
$this->state = self::STATE_VARNAME;
$state = self::STATE_VARNAME;
break;
}
}

if (self::STATE_VALUE === $this->state) {
if (self::STATE_VALUE === $state) {
$this->values[$name] = '';
}

Expand Down
Expand Up @@ -105,7 +105,7 @@ public function configure(Event $event = null)
if (method_exists($kernel = $event->getKernel(), 'terminateWithException')) {
$request = $event->getRequest();
$hasRun = &$this->hasTerminatedWithException;
$this->exceptionHandler = function (\Exception $e) use ($kernel, $request, &$hasRun) {
$this->exceptionHandler = static function (\Exception $e) use ($kernel, $request, &$hasRun) {
if ($hasRun) {
throw $e;
}
Expand Down
Expand Up @@ -215,7 +215,7 @@ private function storeRelativeAgeDirective($directive, $value, $age)
}

if (false !== $this->ageDirectives[$directive]) {
$value = $value - $age;
$value -= $age;
$this->ageDirectives[$directive] = null !== $this->ageDirectives[$directive] ? min($this->ageDirectives[$directive], $value) : $value;
}
}
Expand Down
Expand Up @@ -47,7 +47,7 @@ public function __construct(UserInterface $user, $providerKey, array $roles)

// this token is meant to be used after authentication success, so it is always authenticated
// you could set it as non authenticated later if you need to
parent::setAuthenticated(true);
$this->setAuthenticated(true);
}

/**
Expand Down
Expand Up @@ -16,6 +16,6 @@
*
* @author Matt Johnson <matj1985@gmail.com>
*/
class InvalidTokenConfigurationException extends LogicException implements ExceptionInterface
class InvalidTokenConfigurationException extends LogicException
{
}

0 comments on commit cc4529d

Please sign in to comment.