Some more renamed functions
This commit is contained in:
parent
c81e81dc8d
commit
28cfdec7c4
|
@ -132,7 +132,7 @@ class App
|
|||
* @param int $user_id
|
||||
* @return void
|
||||
*/
|
||||
public function setUserId(int $user_id)
|
||||
public function setLoggedInUserId(int $user_id)
|
||||
{
|
||||
$this->user_id = $user_id;
|
||||
}
|
||||
|
@ -143,7 +143,7 @@ class App
|
|||
* @param int $user_id
|
||||
* @return void
|
||||
*/
|
||||
public function setNickname(string $nickname)
|
||||
public function setLoggedInUserNickname(string $nickname)
|
||||
{
|
||||
$this->nickname = $nickname;
|
||||
}
|
||||
|
|
|
@ -352,8 +352,8 @@ class Authentication
|
|||
}
|
||||
}
|
||||
|
||||
$a->setUserId($user_record['uid']);
|
||||
$a->setNickname($user_record['nickname']);
|
||||
$a->setLoggedInUserId($user_record['uid']);
|
||||
$a->setLoggedInUserNickname($user_record['nickname']);
|
||||
|
||||
if ($login_initial) {
|
||||
Hook::callAll('logged_in', $user_record);
|
||||
|
|
|
@ -1949,7 +1949,7 @@ class ApiTest extends FixtureTest
|
|||
*/
|
||||
public function testApiStatusesMentions()
|
||||
{
|
||||
$this->app->setNickname($this->selfUser['nick']);
|
||||
$this->app->setLoggedInUserNickname($this->selfUser['nick']);
|
||||
$_REQUEST['max_id'] = 10;
|
||||
$result = api_statuses_mentions('json');
|
||||
self::assertEmpty($result['status']);
|
||||
|
@ -2865,7 +2865,7 @@ class ApiTest extends FixtureTest
|
|||
*/
|
||||
public function testApiDirectMessagesNewWithScreenName()
|
||||
{
|
||||
$this->app->setNickname($this->selfUser['nick']);
|
||||
$this->app->setLoggedInUserNickname($this->selfUser['nick']);
|
||||
$_POST['text'] = 'message_text';
|
||||
$_POST['screen_name'] = $this->friendUser['nick'];
|
||||
$result = api_direct_messages_new('json');
|
||||
|
@ -2881,7 +2881,7 @@ class ApiTest extends FixtureTest
|
|||
*/
|
||||
public function testApiDirectMessagesNewWithTitle()
|
||||
{
|
||||
$this->app->setNickname($this->selfUser['nick']);
|
||||
$this->app->setLoggedInUserNickname($this->selfUser['nick']);
|
||||
$_POST['text'] = 'message_text';
|
||||
$_POST['screen_name'] = $this->friendUser['nick'];
|
||||
$_REQUEST['title'] = 'message_title';
|
||||
|
@ -2899,7 +2899,7 @@ class ApiTest extends FixtureTest
|
|||
*/
|
||||
public function testApiDirectMessagesNewWithRss()
|
||||
{
|
||||
$this->app->setNickname($this->selfUser['nick']);
|
||||
$this->app->setLoggedInUserNickname($this->selfUser['nick']);
|
||||
$_POST['text'] = 'message_text';
|
||||
$_POST['screen_name'] = $this->friendUser['nick'];
|
||||
$result = api_direct_messages_new('rss');
|
||||
|
|
Loading…
Reference in New Issue
Block a user