for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Timegridio\Concierge;
class ReservationData
{
protected $issuer;
protected $business;
protected $service;
protected $contact;
protected $date;
protected $time;
protected $timezone;
protected $comments;
public function issuer($user)
$this->issuer = $user;
return $this;
}
public function business($slug)
$this->business = $slug;
public function forBusiness($slug)
return $this->business($slug);
public function service($slug)
$this->service = $slug;
public function forService($slug)
return $this->service($slug);
public function contact($identifier)
$this->contact = $identifier;
public function forContact($identifier)
return $this->contact($identifier);
public function date($date)
$this->date = $date;
public function onDate($date)
return $this->date($date);
public function time($time)
$this->time = $time;
public function atTime($time)
return $this->time($time);
public function timezone($timezone)
return $this->timezone = $timezone;
public function comments($comments)
$this->comments = $comments;
public function withComments($comments)
return $this->comments($comments);