Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
irazasyed authored and github-actions[bot] committed Mar 27, 2023
1 parent dd578f5 commit 09b9587
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Helpers/Emojify.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ private function __construct()
*/
public static function getInstance()
{
if (null === static::$instance) {
static::$instance = new self();
if (null === self::$instance) {
self::$instance = new self();
}

return static::$instance;
return self::$instance;
}

/**
Expand Down

0 comments on commit 09b9587

Please sign in to comment.