for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helix\Asana\Task;
use Helix\Asana\Base\Data;
use Helix\Asana\Project;
use Helix\Asana\Project\Section;
/**
* A task's membership.
*
* @see https://developers.asana.com/docs/task
* @method Project getProject()
* @method Section getSection()
*/
class Membership extends Data {
protected static $map = [
'project' => Project::class,
'section' => Section::class
];
}