Skip to content

Commit

Permalink
Fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna authored and github-actions[bot] committed Mar 29, 2023
1 parent 1c271fc commit f9f80c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Alert/Toast.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function autoHide(bool $autoHide = true): self
*/
public function disableAutoHide(bool $disable = true): self
{
return $this->autoHide(!$disable);
return $this->autoHide(! $disable);
}

/**
Expand Down
1 change: 1 addition & 0 deletions src/Screen/Layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ abstract class Layout implements JsonSerializable
* as a source for an asynchronous request.
*
* @var string
*
* @deprecated usage `method` property
*/
protected $asyncMethod;
Expand Down
1 change: 1 addition & 0 deletions stubs/app/Orchid/PlatformProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class PlatformProvider extends OrchidServiceProvider
* Bootstrap the application services.
*
* @param Dashboard $dashboard
*
* @return void
*/
public function boot(Dashboard $dashboard): void
Expand Down

0 comments on commit f9f80c6

Please sign in to comment.