Skip to content

Commit

Permalink
improve Rule Facades
Browse files Browse the repository at this point in the history
  • Loading branch information
dansysanalyst committed May 19, 2024
1 parent 969aed4 commit 6d6d7b8
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/Facades/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,22 @@
namespace PowerComponents\LivewirePowerGrid\Facades;

use Illuminate\Support\Facades\Facade;
use PowerComponents\LivewirePowerGrid\Components\Rules\{RuleActions, RuleCheckbox, RuleManager, RuleRadio, RuleRows};

/**
* @method static RuleActions button(string $action)
* @method static RuleToggleable toggleable(string $action)
* @method static RuleEditOnClick editOnClick(string $action)
* @method static RuleRows rows()
* @method static RuleCheckbox checkbox()
* @method static RuleRadio radio()
* @mixin \PowerComponents\LivewirePowerGrid\Components\Rules\BaseRule
* @mixin \PowerComponents\LivewirePowerGrid\Components\Rules\RuleManager
* @mixin \PowerComponents\LivewirePowerGrid\Components\Rules\RuleActions
* @mixin \PowerComponents\LivewirePowerGrid\Components\Rules\RuleCheckbox
* @mixin \PowerComponents\LivewirePowerGrid\Components\Rules\RuleEditOnClick
* @mixin \PowerComponents\LivewirePowerGrid\Components\Rules\RuleRadio
* @mixin \PowerComponents\LivewirePowerGrid\Components\Rules\RuleRows
* @mixin \PowerComponents\LivewirePowerGrid\Components\Rules\RuleToggleable
* @see RuleManager
*/
class Rule extends Facade
Expand Down

0 comments on commit 6d6d7b8

Please sign in to comment.