Skip to content

Commit

Permalink
Merge pull request #26 from mabar/patch-2
Browse files Browse the repository at this point in the history
PHP 7.2 compatibility
  • Loading branch information
enumag authored Dec 27, 2017
2 parents 5f11d1e + d98584c commit 637530a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
}
],
"require": {
"php": ">=5.3.2",
"nette/di": "~2.2",
"nette/http": "~2.2",
"php": ">=5.4.0",
"nette/di": "~2.4",
"nette/http": "~2.4",
"nette/utils": "~2.4",
"tracy/tracy": "~2.4"
},
"autoload": {
Expand Down
4 changes: 3 additions & 1 deletion src/Kdyby/SessionPanel/Diagnostics/SessionPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
* @author Pavel Železný <[email protected]>
* @author Filip Procházka <[email protected]>
*/
class SessionPanel extends Nette\Object implements Tracy\IBarPanel
class SessionPanel implements Tracy\IBarPanel
{

use Nette\SmartObject;

const SIGNAL = 'nette-session-panel-delete-session';
const SECTION_TYPE = 'section-type';
const NETTE_SESSION = 'nette-session';
Expand Down

0 comments on commit 637530a

Please sign in to comment.