for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Market\Content\Models;
use Yandex\Common\Model;
class Schedule extends Model
{
protected $workingDaysFrom = null;
protected $workingDaysTill = null;
protected $workingHoursFrom = null;
protected $workingHoursTill = null;
/**
* Retrieve the workingDaysFrom property
*
* @return int|null
*/
public function getWorkingDaysFrom()
return $this->workingDaysFrom;
}
* Retrieve the workingDaysTill property
public function getWorkingDaysTill()
return $this->workingDaysTill;
* Retrieve the workingHoursFrom property
* @return string|null
public function getWorkingHoursFrom()
return $this->workingHoursFrom;
* Retrieve the workingHoursTill property
public function getWorkingHoursTill()
return $this->workingHoursTill;