for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smart\EtlBundle\Extractor;
/**
* Nicolas Bastien <[email protected]>
*/
abstract class AbstractFolderExtrator
{
* @var string
protected $folderToExtract;
* @return string
public function getFolderToExtract()
return $this->folderToExtract;
}
* @param string $folderToExtract
public function setFolderToExtract($folderToExtract)
$this->folderToExtract = $folderToExtract;