for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Germania\OpeningTimes;
trait OpeningTimesAwareTrait
{
use OpeningTimesProviderTrait;
/**
* @param OpeningTimesInterface $opening_times
*/
public function setOpeningTimes( OpeningTimesInterface $opening_times)
$this->opening_times = $opening_times;
return $this;
}