Skip to content

Commit

Permalink
Merge pull request #31 from bilfeldt/fixes/styleci
Browse files Browse the repository at this point in the history
StyleCI fix
  • Loading branch information
bilfeldt authored May 1, 2023
2 parents a45f4df + bbd1174 commit de8fc9c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@ public static function levels(): array

public static function info(string $text): self
{
return (self::make($text))->level(self::LEVEL_INFO);
return self::make($text)->level(self::LEVEL_INFO);
}

public static function success(string $text): self
{
return (self::make($text))->level(self::LEVEL_SUCCESS);
return self::make($text)->level(self::LEVEL_SUCCESS);
}

public static function warning(string $text): self
{
return (self::make($text))->level(self::LEVEL_WARNING);
return self::make($text)->level(self::LEVEL_WARNING);
}

public static function error(string $text): self
{
return (self::make($text))->level(self::LEVEL_ERROR);
return self::make($text)->level(self::LEVEL_ERROR);
}

public static function make(string $text): self
Expand Down

0 comments on commit de8fc9c

Please sign in to comment.