Skip to content

Commit

Permalink
Make web.session.ISession interface implement lang.Closeable
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Jan 3, 2021
1 parent 37de0ec commit dc191c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Sessions for the XP Framework ChangeLog

## ?.?.? / ????-??-??

## 2.1.0 / 2021-01-03

* Made `web.session.ISession` interface implement `lang.Closeable`
(@thekid)

## 2.0.0 / 2020-04-10

* Implemented xp-framework/rfc#334: Drop PHP 5.6:
Expand Down
4 changes: 3 additions & 1 deletion src/main/php/web/session/ISession.class.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php namespace web\session;

interface ISession {
use lang\Closeable;

interface ISession extends Closeable {

/**
* Returns the session identifier
Expand Down

0 comments on commit dc191c9

Please sign in to comment.