Valinor/qa/PHPStan/Stubs/Psr/SimpleCache/CacheInterface.stub
Romain Canon b2e810e3ce feat!: allow mapping to any type
Previously, the method `TreeMapper::map` would allow mapping only to an
object. It is now possible to map to any type handled by the library.

It is for instance possible to map to an array of objects:

```php
$objects = (new \CuyZ\Valinor\MapperBuilder())->mapper()->map(
    'array<' . SomeClass::class . '>',
    [/* … */]
);
```

For simple use-cases, an array shape can be used:

```php
$array = (new \CuyZ\Valinor\MapperBuilder())->mapper()->map(
    'array{foo: string, bar: int}',
    [/* … */]
);

echo strtolower($array['foo']);
echo $array['bar'] * 2;
```

This new feature changes the possible behaviour of the mapper, meaning
static analysis tools need help to understand the types correctly. An
extension for PHPStan and a plugin for Psalm are now provided and can be
included in a project to automatically increase the type coverage.
2022-01-02 00:48:01 +01:00

44 lines
945 B
PHP

<?php
namespace Psr\SimpleCache;
use DateInterval;
/**
* @template EntryType
*/
interface CacheInterface
{
/**
* @param string $key
* @param EntryType $default
* @return EntryType
*/
public function get(string $key, $default = null);
/**
* @param string $key
* @param EntryType $value
* @param null|int|DateInterval $ttl
*/
public function set(string $key, $value, $ttl = null): bool;
/**
* @param iterable<string> $keys
* @param EntryType $default
* @return iterable<string, EntryType>
*/
public function getMultiple(iterable $keys, $default = null): iterable;
/**
* @param iterable<string, EntryType> $values
* @param null|int|DateInterval $ttl
*/
public function setMultiple(iterable $values, $ttl = null): bool;
/**
* @param iterable<string> $keys
*/
public function deleteMultiple(iterable $keys): bool;
}