for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TPG\Pcflib\Categories;
class Wine extends Category
{
public function region(string $region)
$this->attributes['Region'] = $region;
return $this;
}
public function varietal(string $varietal)
$this->attributes['Varietal'] = $varietal;
public function volume(string $volume)
$this->attributes['Volume'] = $volume;
public function winery(string $winery)
$this->attributes['Winery'] = $winery;