PHP Class Flarum\Core\Command\DeleteUser

Show file Open project: flarum/core

Public Properties

Property Type Description
$actor Flarum\Core\User The user performing the action.
$data array Any other user input associated with the action. This is unused by default, but may be used by extensions.
$userId integer The ID of the user to delete.

Public Methods

Method Description
__construct ( integer $userId, User $actor, array $data = [] )

Method Details

__construct() public method

public __construct ( integer $userId, User $actor, array $data = [] )
$userId integer The ID of the user to delete.
$actor Flarum\Core\User The user performing the action.
$data array Any other user input associated with the action. This is unused by default, but may be used by extensions.

Property Details

$actor public property

The user performing the action.
public User,Flarum\Core $actor
return Flarum\Core\User

$data public property

Any other user input associated with the action. This is unused by default, but may be used by extensions.
public array $data
return array

$userId public property

The ID of the user to delete.
public int $userId
return integer