1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/14838] Add missing method to mock'ed feed

PHPBB3-14838
This commit is contained in:
Marc Alexander
2017-01-04 19:19:02 +01:00
parent c5ce0cd3c4
commit 1db7aa712a

View File

@@ -28,4 +28,9 @@ class phpbb_feed_attachments_mock_feed extends \phpbb\feed\attachments_base
return true; return true;
} }
public function adjust_item(&$item_row, &$row)
{
return array();
}
} }