Skip to content

Commit

Permalink
Apply fixes from StyleCI (#9)
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]

Co-authored-by: StyleCI Bot <bot@styleci.io>
  • Loading branch information
sampoyigi and StyleCIBot authored May 4, 2022
1 parent 73a6572 commit 859c650
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions config/websockets.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
'secret' => env('PUSHER_APP_SECRET'),
'path' => env('PUSHER_APP_PATH'),
'capacity' => null,
'enable_client_messages' => FALSE,
'enable_statistics' => TRUE,
'enable_client_messages' => false,
'enable_statistics' => true,
],
],

Expand Down Expand Up @@ -102,7 +102,7 @@
* Use an DNS resolver to make the requests to the statistics logger
* default is to resolve everything to 127.0.0.1.
*/
'perform_dns_lookup' => FALSE,
'perform_dns_lookup' => false,
],

/*
Expand Down
2 changes: 1 addition & 1 deletion models/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ public static function findEventBroadcasts()

public static function useWebsockets()
{
return FALSE;
return false;
}
}
2 changes: 1 addition & 1 deletion models/config/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
'label' => 'lang:igniter.broadcast::default.label_encrypted',
'span' => 'left',
'type' => 'switch',
'default' => TRUE,
'default' => true,
],
],
'rules' => [
Expand Down

0 comments on commit 859c650

Please sign in to comment.