mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-12 03:44:26 +02:00
Changed class names
This commit is contained in:
parent
5056c95d60
commit
63921ccfca
2 changed files with 6 additions and 6 deletions
|
@ -22,7 +22,7 @@
|
|||
namespace Friendica\Content\Conversation\Repository;
|
||||
|
||||
use Friendica\BaseCollection;
|
||||
use Friendica\Content\Conversation\Entity\Timeline as EntityTimeline;
|
||||
use Friendica\Content\Conversation\Entity\Timeline as TimelineEntity;
|
||||
use Friendica\Content\Conversation\Factory\Timeline;
|
||||
use Friendica\Database\Database;
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
@ -41,10 +41,10 @@ class Channel extends \Friendica\BaseRepository
|
|||
*
|
||||
* @param int $id
|
||||
* @param int $uid
|
||||
* @return EntityTimeline
|
||||
* @return TimelineEntity
|
||||
* @throws \Friendica\Network\HTTPException\NotFoundException
|
||||
*/
|
||||
public function selectById(int $id, int $uid): EntityTimeline
|
||||
public function selectById(int $id, int $uid): TimelineEntity
|
||||
{
|
||||
return $this->_selectOne(['id' => $id, 'uid' => $uid]);
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ class Channel extends \Friendica\BaseRepository
|
|||
return $this->_select(['uid' => $uid]);
|
||||
}
|
||||
|
||||
public function save(EntityTimeline $Channel): EntityTimeline
|
||||
public function save(TimelineEntity $Channel): TimelineEntity
|
||||
{
|
||||
$fields = [
|
||||
'label' => $Channel->label,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue