@@ -70,7 +70,7 @@ public static function useCustomFieldModel(string $model): static
7070 */
7171 public static function valueModel (): string
7272 {
73- return static ::$ valueModel ;
73+ return self ::$ valueModel ;
7474 }
7575
7676 /**
@@ -88,7 +88,7 @@ public static function newValueModel(): mixed
8888 */
8989 public static function useValueModel (string $ model ): static
9090 {
91- static ::$ valueModel = $ model ;
91+ self ::$ valueModel = $ model ;
9292
9393 return new self ;
9494 }
@@ -100,7 +100,7 @@ public static function useValueModel(string $model): static
100100 */
101101 public static function optionModel (): string
102102 {
103- return static ::$ optionModel ;
103+ return self ::$ optionModel ;
104104 }
105105
106106 /**
@@ -118,7 +118,7 @@ public static function newOptionModel(): mixed
118118 */
119119 public static function useOptionModel (string $ model ): static
120120 {
121- static ::$ optionModel = $ model ;
121+ self ::$ optionModel = $ model ;
122122
123123 return new self ;
124124 }
@@ -130,7 +130,7 @@ public static function useOptionModel(string $model): static
130130 */
131131 public static function sectionModel (): string
132132 {
133- return static ::$ sectionModel ;
133+ return self ::$ sectionModel ;
134134 }
135135
136136 /**
@@ -148,7 +148,7 @@ public static function newSectionModel(): mixed
148148 */
149149 public static function useSectionModel (string $ model ): static
150150 {
151- static ::$ sectionModel = $ model ;
151+ self ::$ sectionModel = $ model ;
152152
153153 return new self ;
154154 }
0 commit comments