for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Maqe\Qwatcher\Tracks;
use Maqe\Qwatcher\Tracks\Enums\StatusType;
class SucceedTracks extends TracksAbstract
{
public function __construct($id, $job = null)
return $this->pushToTracks($id, $job);
}
public function pushToTracks($id, $job = null)
return $this->update($id, $job, StatusType::SUCCEED);