Skip to content

Commit

Permalink
BUGFIX: Fix logic of Workspace::isRootWorkspace
Browse files Browse the repository at this point in the history
LOL
  • Loading branch information
mhsdesign committed Oct 16, 2024
1 parent 738b68b commit 4a652d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ public function __construct(
*/
public function isRootWorkspace(): bool
{
return $this->baseWorkspaceName !== null;
return $this->baseWorkspaceName === null;
}
}

0 comments on commit 4a652d2

Please sign in to comment.