File tree Expand file tree Collapse file tree 13 files changed +13
-13
lines changed
Expand file tree Collapse file tree 13 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public static function getDefaultConfig(): array
2121
2222 public static function make (string $ name , Field $ field ): Input
2323 {
24- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
24+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
2525
2626 $ input = $ input ->label ($ field ->name ?? self ::getDefaultConfig ()['label ' ] ?? null )
2727 ->inline ($ field ->config ['inline ' ] ?? self ::getDefaultConfig ()['inline ' ]);
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public static function getDefaultConfig(): array
3030
3131 public static function make (string $ name , ?Field $ field = null ): Input
3232 {
33- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
33+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
3434
3535 $ input = $ input ->label ($ field ->name ?? null )
3636 ->searchable ($ field ->config ['searchable ' ] ?? self ::getDefaultConfig ()['searchable ' ])
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public static function getDefaultConfig(): array
2626
2727 public static function make (string $ name , Field $ field ): Input
2828 {
29- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
29+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
3030
3131 $ input = $ input ->label ($ field ->name ?? self ::getDefaultConfig ()['label ' ] ?? null )
3232 ->regex ($ field ->config ['regex ' ] ?? self ::getDefaultConfig ()['regex ' ]);
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static function getDefaultConfig(): array
3535
3636 public static function make (string $ name , Field $ field ): Input
3737 {
38- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
38+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
3939
4040 $ input = $ input ->label ($ field ->name ?? self ::getDefaultConfig ()['label ' ] ?? null )
4141 ->format ($ field ->config ['format ' ] ?? self ::getDefaultConfig ()['format ' ])
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public static function getDefaultConfig(): array
2222
2323 public static function make (string $ name , Field $ field ): Input
2424 {
25- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
25+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
2626
2727 $ input = $ input ->label ($ field ->name ?? self ::getDefaultConfig ()['label ' ] ?? null )
2828 ->addActionLabel ($ field ->config ['addActionLabel ' ] ?? self ::getDefaultConfig ()['addActionLabel ' ])
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public static function getDefaultConfig(): array
2525
2626 public static function make (string $ name , ?Field $ field = null ): Input
2727 {
28- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
28+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
2929
3030 $ input = $ input ->label ($ field ->name ?? self ::getDefaultConfig ()['label ' ] ?? null )
3131 ->inline ($ field ->config ['inline ' ] ?? self ::getDefaultConfig ()['inline ' ])
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public static function getDefaultConfig(): array
6262
6363 public static function make (string $ name , ?Field $ field = null ): Input
6464 {
65- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
65+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
6666
6767 $ input = $ input ->label ($ field ->name ?? self ::getDefaultConfig ()['label ' ] ?? null )
6868 ->addActionLabel ($ field ->config ['addActionLabel ' ] ?? self ::getDefaultConfig ()['addActionLabel ' ])
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public static function getDefaultConfig(): array
2222
2323 public static function make (string $ name , ?Field $ field = null ): Input
2424 {
25- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
25+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
2626
2727 $ input = $ input ->label ($ field ->name ?? null )
2828 ->toolbarButtons ($ field ->config ['toolbarButtons ' ] ?? self ::getDefaultConfig ()['toolbarButtons ' ])
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public static function getDefaultConfig(): array
3838
3939 public static function make (string $ name , ?Field $ field = null ): Input
4040 {
41- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
41+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
4242
4343 $ input = $ input ->label ($ field ->name ?? null )
4444 ->options ($ field ->config ['options ' ] ?? self ::getDefaultConfig ()['options ' ])
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public static function getDefaultConfig(): array
2424
2525 public static function make (string $ name , ?Field $ field = null ): Input
2626 {
27- $ input = self ::applyDefaultSettings (Input::make (input: $ field ->ulid ?? $ name ), field: $ field );
27+ $ input = self ::applyDefaultSettings (input: Input::make ($ field ->ulid ?? $ name ), field: $ field );
2828
2929 $ input = $ input ->label ($ field ->name ?? self ::getDefaultConfig ()['label ' ] ?? null )
3030 ->reorderable ($ field ->config ['reorderable ' ] ?? self ::getDefaultConfig ()['reorderable ' ])
You can’t perform that action at this time.
0 commit comments