REBELinBLUE\Deployer\Repositories\EloquentDeploymentRepository::getTodayCount PHP Method

getTodayCount() public method

See also: DeploymentRepository::getBetweenDates()
public getTodayCount ( $project_id )
    public function getTodayCount($project_id)
    {
        $now = Carbon::now();
        return $this->getBetweenDates($project_id, $now, $now);
    }