for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Arthem\GoogleApi\Domain\Place\VO;
class OpeningHours
{
/**
* @var string
*/
private $weekdayText;
* @param string $weekdayText
public function __construct($weekdayText)
$this->weekdayText = $weekdayText;
}
* @return string
public function getWeekdayText()
return $this->weekdayText;