for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Linio\Component\SpreadsheetParser;
trait SpreadsheetParserAware
{
/**
* @var SpreadsheetParserService
*/
protected $spreadsheetParserService;
public function getSpreadsheetParserService()
return $this->spreadsheetParserService;
}
* @param SpreadsheetParserService $spreadsheetParserService
public function setSpreadsheetParserService(SpreadsheetParserService $spreadsheetParserService)
$this->spreadsheetParserService = $spreadsheetParserService;