Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache.php deprecations & v3 migration guide update #122

Merged
merged 3 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions docs/book/v2/migration/preparing-for-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
Version 3 will introduce a number of backwards incompatible changes.
This document is intended to help you prepare for these changes.

## Upcoming Behaviour and Signature Changes

### `laminas/laminas-cache` Replacement

From version 3.0 onwards, `laminas-session` will remove the `laminas/laminas-cache`
dependency and replace it with `psr/simple-cache` to adhere to PSR-16.

The `Laminas\Session\SaveHandler\Cache.php` class will be updated to reflect this change.
Starting from version 3.0 the class will be made `final` and has been marked as such in the current version.
The following properties have been marked as deprecated and will be removed in version 3.0:

- `sessionSavePath`
- `sessionName`

The following methods will also be removed and have been marked as deprecated in the current version:

- `setCacheStorage`
- `getCacheStorage`
- `getCacheStorge`

Going forward, you may move `laminas/laminas-cache` to your application's direct requirements to keep using it,
or find a PSR-16 implementation in the `psr/simple-cache-implementation` virtual repository.

## Removed Features

### `laminas/laminas-db` Removal
Expand Down
13 changes: 13 additions & 0 deletions psalm-baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,19 @@
</PossiblyUnusedReturnValue>
</file>
<file src="src/SaveHandler/Cache.php">
<DeprecatedMethod>
<code><![CDATA[getCacheStorage]]></code>
<code><![CDATA[getCacheStorage]]></code>
<code><![CDATA[getCacheStorage]]></code>
<code><![CDATA[getCacheStorage]]></code>
<code><![CDATA[getCacheStorage]]></code>
<code><![CDATA[getCacheStorage]]></code>
<code><![CDATA[setCacheStorage]]></code>
</DeprecatedMethod>
<DeprecatedProperty>
<code><![CDATA[$this->sessionName]]></code>
<code><![CDATA[$this->sessionSavePath]]></code>
</DeprecatedProperty>
<ImplementedReturnTypeMismatch>
<code><![CDATA[bool]]></code>
</ImplementedReturnTypeMismatch>
Expand Down
11 changes: 10 additions & 1 deletion src/SaveHandler/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,25 @@
* Cache session save handler
*
* @see ReturnTypeWillChange
*
* @final
*/
class Cache implements SaveHandlerInterface
{
/**
* Session Save Path
*
* @deprecated This property will be removed in version 3.0.
*
* @var string
*/
protected $sessionSavePath;

/**
* Session Name
*
* @deprecated This property will be removed in version 3.0.
*
* @var string
*/
protected $sessionName;
Expand Down Expand Up @@ -52,7 +58,6 @@ public function __construct(CacheStorage $cacheStorage)
#[ReturnTypeWillChange]
public function open($path, $name)
{
// @todo figure out if we want to use these
$this->sessionSavePath = $path;
$this->sessionName = $name;

Expand Down Expand Up @@ -131,6 +136,8 @@ public function gc($maxlifetime)
/**
* Set cache storage
*
* @deprecated This method will be removed in version 3.0.
*
* @return Cache
*/
public function setCacheStorage(CacheStorage $cacheStorage)
Expand All @@ -142,6 +149,8 @@ public function setCacheStorage(CacheStorage $cacheStorage)
/**
* Get cache storage
*
* @deprecated This method will be removed in version 3.0.
*
* @return CacheStorage
*/
public function getCacheStorage()
Expand Down