Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Format some source
Browse files Browse the repository at this point in the history
  • Loading branch information
godbout committed Feb 25, 2017
1 parent 4dfb307 commit 20541dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions commands/menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
->valid(true);
} elseif ($alfredTime->hasTimerRunning() === false) {
$services = $alfredTime->activatedServices();

if (empty($services) === true) {
$subtitle = 'No timer services activated. Edit config file to active services';
} else {
Expand All @@ -41,7 +42,7 @@
if ($service === reset($services)) {
$subtitle .= $service;
} else {
$subtitle .= ' and ' .$service;
$subtitle .= ' and ' . $service;
}
}
}
Expand All @@ -55,6 +56,7 @@
->valid(true);
} else {
$services = $alfredTime->activatedServices();

if (empty($services) === true) {
$subtitle = 'No timer services activated. Edit config file to active services';
} else {
Expand All @@ -63,7 +65,7 @@
if ($service === reset($services)) {
$subtitle .= $service;
} else {
$subtitle .= ' and ' .$service;
$subtitle .= ' and ' . $service;
}
}
}
Expand Down

0 comments on commit 20541dd

Please sign in to comment.