File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,22 +31,22 @@ public static function levels(): array
3131
3232 public static function info (string $ text ): self
3333 {
34- return ( self ::make ($ text) )->level (self ::LEVEL_INFO );
34+ return self ::make ($ text )->level (self ::LEVEL_INFO );
3535 }
3636
3737 public static function success (string $ text ): self
3838 {
39- return ( self ::make ($ text) )->level (self ::LEVEL_SUCCESS );
39+ return self ::make ($ text )->level (self ::LEVEL_SUCCESS );
4040 }
4141
4242 public static function warning (string $ text ): self
4343 {
44- return ( self ::make ($ text) )->level (self ::LEVEL_WARNING );
44+ return self ::make ($ text )->level (self ::LEVEL_WARNING );
4545 }
4646
4747 public static function error (string $ text ): self
4848 {
49- return ( self ::make ($ text) )->level (self ::LEVEL_ERROR );
49+ return self ::make ($ text )->level (self ::LEVEL_ERROR );
5050 }
5151
5252 public static function make (string $ text ): self
You can’t perform that action at this time.
0 commit comments