for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helix\Asana\Webhook;
use Helix\Asana\Task;
/**
* A task webhook.
*
* @method Task getResource ()
*/
class TaskWebhook extends AbstractWebhook {
const TYPE = 'task_webhook';
protected static $map = [
'resource' => Task::class
];
}