aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/feed/topics.php
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2015-08-06 14:20:06 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2015-08-23 22:36:10 +0200
commit5df9a4547337ef90300c21d0f997bc67e43cba9e (patch)
treef27c76c11fdd67dc1b38359bae247f80be446ed1 /phpBB/phpbb/feed/topics.php
parent8e5e954438b232f4ce7aec6a5db3d52b974c07a8 (diff)
downloadforums-5df9a4547337ef90300c21d0f997bc67e43cba9e.tar
forums-5df9a4547337ef90300c21d0f997bc67e43cba9e.tar.gz
forums-5df9a4547337ef90300c21d0f997bc67e43cba9e.tar.bz2
forums-5df9a4547337ef90300c21d0f997bc67e43cba9e.tar.xz
forums-5df9a4547337ef90300c21d0f997bc67e43cba9e.zip
[ticket/13645] Proper OOP for feeds
PHPBB3-13645
Diffstat (limited to 'phpBB/phpbb/feed/topics.php')
-rw-r--r--phpBB/phpbb/feed/topics.php42
1 files changed, 24 insertions, 18 deletions
diff --git a/phpBB/phpbb/feed/topics.php b/phpBB/phpbb/feed/topics.php
index 2b9cb3501a..cf4a2e579e 100644
--- a/phpBB/phpbb/feed/topics.php
+++ b/phpBB/phpbb/feed/topics.php
@@ -1,27 +1,30 @@
<?php
/**
-*
-* This file is part of the phpBB Forum Software package.
-*
-* @copyright (c) phpBB Limited <https://www.phpbb.com>
-* @license GNU General Public License, version 2 (GPL-2.0)
-*
-* For full copyright and license information, please see
-* the docs/CREDITS.txt file.
-*
-*/
+ *
+ * This file is part of the phpBB Forum Software package.
+ *
+ * @copyright (c) phpBB Limited <https://www.phpbb.com>
+ * @license GNU General Public License, version 2 (GPL-2.0)
+ *
+ * For full copyright and license information, please see
+ * the docs/CREDITS.txt file.
+ *
+ */
namespace phpbb\feed;
/**
-* New Topics feed
-*
-* This will give you the last {$this->num_items} created topics
-* including the first post.
-*/
-class topics extends \phpbb\feed\topic_base
+ * New Topics feed
+ *
+ * This will give you the last {$this->num_items} created topics
+ * including the first post.
+ */
+class topics extends topic_base
{
- function get_sql()
+ /**
+ * {@inheritdoc}
+ */
+ protected function get_sql()
{
$forum_ids_read = $this->get_readable_forums();
if (empty($forum_ids_read))
@@ -77,7 +80,10 @@ class topics extends \phpbb\feed\topic_base
return true;
}
- function adjust_item(&$item_row, &$row)
+ /**
+ * {@inheritdoc}
+ */
+ public function adjust_item(&$item_row, &$row)
{
parent::adjust_item($item_row, $row);