Skip to content

Commit

Permalink
[K6.2] Add layouts to fix issues with Php 8.2.x (#9580)
Browse files Browse the repository at this point in the history
  • Loading branch information
xillibit authored Nov 10, 2023
1 parent c8881c4 commit e510be6
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/site/src/Layout/Topic/Poll/TopicPollResults.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

/**
* Kunena Component
*
* @package Kunena.Site
* @subpackage Layout.Topic.Item
*
* @copyright Copyright (C) 2008 - 2023 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/

namespace Kunena\Forum\Site\Layout\Topic\Poll;

\defined('_JEXEC') or die;

use Kunena\Forum\Libraries\Layout\KunenaLayout;

/**
* KunenaLayoutTopicList
*
* @since Kunena 6.2
*/
class TopicPollResults extends KunenaLayout
{
public $intervalTimeToLive;
}
28 changes: 28 additions & 0 deletions src/site/src/Layout/Topic/Poll/TopicPollVote.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

/**
* Kunena Component
*
* @package Kunena.Site
* @subpackage Layout.Topic.Item
*
* @copyright Copyright (C) 2008 - 2023 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/

namespace Kunena\Forum\Site\Layout\Topic\Poll;

\defined('_JEXEC') or die;

use Kunena\Forum\Libraries\Layout\KunenaLayout;

/**
* KunenaLayoutTopicList
*
* @since Kunena 6.2
*/
class TopicPollVote extends KunenaLayout
{
public $intervalTimeToLive;
}

0 comments on commit e510be6

Please sign in to comment.