chore: style

This commit is contained in:
nuno maduro
2026-07-06 13:17:11 +01:00
parent 632ae79c8b
commit df42b9ed7b
3 changed files with 9 additions and 2 deletions
+4 -1
View File
@@ -219,8 +219,11 @@ final class Tia implements AddsOutput, HandlesArguments, Terminable
if (! $watchPatterns->isEnabled()) {
return false;
}
if (! $watchPatterns->isLocally()) {
return true;
}
return ! ($watchPatterns->isLocally() && self::argumentPresent('--ci', $arguments));
return ! self::argumentPresent('--ci', $arguments);
}
/**