for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JamesMills\LaravelTimezone\Traits;
trait ModelTrait
{
/**
* @return mixed
*/
public function getTimezone()
return $this->timezone;
}
* @param string $timezone
* @return $this
public function setTimezone(string $timezone)
$this->timezone = $timezone;
timezone
return $this;