Skip to content

Commit

Permalink
Autocommit PHP CS Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchBlood authored and github-actions[bot] committed Nov 5, 2024
1 parent f82d6f2 commit 561ea56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions models/states/MessageUserJoined.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ class MessageUserJoined extends AbstractMessageState
/**
* The default value for the 'enableMessageUserJoined' setting.
*/
const DEFAULT_ENABLE_MESSAGE_USER_JOINED = true;
public const DEFAULT_ENABLE_MESSAGE_USER_JOINED = true;

/**
* The key for the 'enableMessageUserJoined' setting.
*/
const SETTING_ENABLE_MESSAGE_USER_JOINED = 'enableMessageUserJoined';
public const SETTING_ENABLE_MESSAGE_USER_JOINED = 'enableMessageUserJoined';

/**
* @inheritdoc
Expand Down
4 changes: 2 additions & 2 deletions models/states/MessageUserLeft.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ class MessageUserLeft extends AbstractMessageState
/**
* The default value for the 'enableMessageUserLeft' setting.
*/
const DEFAULT_ENABLE_MESSAGE_USER_LEFT = true;
public const DEFAULT_ENABLE_MESSAGE_USER_LEFT = true;

/**
* The key for the 'enableMessageUserLeft' setting.
*/
const SETTING_ENABLE_MESSAGE_USER_LEFT = 'enableMessageUserLeft';
public const SETTING_ENABLE_MESSAGE_USER_LEFT = 'enableMessageUserLeft';

/**
* @inheritdoc
Expand Down

0 comments on commit 561ea56

Please sign in to comment.