for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Madewithlove\Export\Csv\Transformers;
trait WithHeaders
{
/**
* @var array
*/
protected $headers = [];
* @param array $headers
*
* @return static
public function setHeaders(array $headers)
$this->headers = $headers;
return $this;
}
* @return array
public function getHeaders()
return $this->headers;