#!/usr/bin/env php
<?php

require(__DIR__ . '/../vendor/autoload.php');

$application = new Symfony\Component\Console\Application('Watchdog', '2.0');
$application->add(new Watchdog\Console\Daemon('daemon'));
$application->setDefaultCommand('daemon');

/** @noinspection PhpUnhandledExceptionInspection */
exit($application->run());