Skip to content

Commit 309e2e9

Browse files
committed
Update phpstan docs
1 parent 1fad99d commit 309e2e9

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
vendor/
22
composer.lock
3+
/*.rdb
34

45
###> squizlabs/php_codesniffer ###
56
/.phpcs-cache

DependencyInjection/RedisExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class RedisExtension extends ConfigurableExtension
1313
/**
1414
* loadInternal.
1515
*
16-
* @param mixed[] $configs
16+
* @param array{clients: array<string, array<mixed>>} $configs
1717
* @param ContainerBuilder $container
1818
*/
1919
protected function loadInternal(array $configs, ContainerBuilder $container): void

Redis/Client.php

+11-6
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,33 @@ public function __construct($parameters = null, $options = null)
2121
*/
2222
public function pop(string $key): ?string
2323
{
24-
return $this->call('lpop', [$key]);
24+
$result = $this->call('lpop', [$key]);
25+
26+
return null === $result ? null : (string) $result;
2527
}
2628

2729
/**
2830
* {@inheritdoc}
2931
*/
3032
public function push(string $key, ...$values): int
3133
{
32-
return $this->call('rpush', array_merge([$key], $values));
34+
return (int) $this->call('rpush', array_merge([$key], $values));
3335
}
3436

3537
/**
3638
* {@inheritdoc}
3739
*/
3840
public function count(string $key): int
3941
{
40-
return $this->call('llen', [$key]);
42+
return (int) $this->call('llen', [$key]);
4143
}
4244

4345
/**
4446
* {@inheritdoc}
4547
*/
4648
public function remove(string $key): int
4749
{
48-
return $this->call('del', [$key]);
50+
return (int) $this->call('del', [$key]);
4951
}
5052

5153
/**
@@ -54,10 +56,13 @@ public function remove(string $key): int
5456
* @param string $command the command ID
5557
* @param mixed[] $arguments the arguments for the command
5658
*
57-
* @return mixed
59+
* @return int|bool|string|float|null
5860
*/
5961
protected function call(string $command, array $arguments = [])
6062
{
61-
return $this->executeCommand($this->createCommand($command, $arguments));
63+
/** @var int|bool|string|float|null $result */
64+
$result = $this->executeCommand($this->createCommand($command, $arguments));
65+
66+
return $result;
6267
}
6368
}

Tests/Fixtures/app/AppKernel.php

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public function getLogDir(): string
4545

4646
public function registerContainerConfiguration(LoaderInterface $loader): void
4747
{
48+
// @phpstan-ignore-next-line
4849
if (Kernel::VERSION_ID < 53000) {
4950
$loader->load($this->getRootDir() . '/config/config_test.yml');
5051

Tests/Redis/ClientTest.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace SymfonyBundles\RedisBundle\Tests\Redis;
44

55
use Exception;
6+
use Predis\Response\Status;
67
use SymfonyBundles\RedisBundle\Tests\TestCase;
78
use SymfonyBundles\RedisBundle\Redis\ClientInterface;
89
use Symfony\Component\DependencyInjection\ContainerBuilder;
@@ -56,7 +57,9 @@ public function testSingleConnection(): void
5657
],
5758
]);
5859

59-
$this->assertSame('OK', $client->flushall()->getPayload());
60+
$result = $client->flushall();
61+
$this->assertInstanceOf(Status::class, $result);
62+
$this->assertSame('OK', $result->getPayload());
6063
}
6164

6265
/**

phpstan-baseline.neon

-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,3 @@ parameters:
44
message: "#^Call to an undefined method Symfony\\\\Component\\\\Config\\\\Definition\\\\Builder\\\\NodeDefinition\\:\\:children\\(\\)\\.$#"
55
count: 1
66
path: DependencyInjection/Configuration.php
7-
-
8-
message: '#^Comparison operation "<" between 70103 and 53000 is always false.$#'
9-
count: 1
10-
path: Tests/Fixtures/app/AppKernel.php

phpstan.neon

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ includes:
22
- phpstan-baseline.neon
33

44
parameters:
5-
level: 8
5+
level: max
66
paths:
77
- DependencyInjection/
88
- Redis/

0 commit comments

Comments
 (0)