for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Godbout\Alfred\Time\Menus;
use Godbout\Alfred\Workflow\Icon;
use Godbout\Alfred\Workflow\Item;
use Godbout\Alfred\Workflow\ScriptFilter;
class Setup extends Menu
{
public static function scriptFilter()
ScriptFilter::add(
self::toggl(),
self::harvest(),
self::everhour(),
self::clockify()
);
}
private static function toggl()
return Item::create()
->title('Setup Toggl')
->subtitle('')
->icon(Icon::create('resources/icons/toggl.png'))
->arg('toggl_setup');
private static function harvest()
->title('Setup Harvest')
->icon(Icon::create('resources/icons/harvest.png'))
->arg('harvest_setup');
private static function everhour()
->title('Setup Everhour')
->icon(Icon::create('resources/icons/everhour.png'))
->arg('everhour_setup');
private static function clockify()
->title('Setup Clockify')
->icon(Icon::create('resources/icons/clockify.png'))
->arg('clockify_setup');