for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ksdev\NBPCurrencyConverter;
class ExRatesTableFactory
{
/**
* Get new ExRatesTable
*
* @param string $rawContent Raw xml content
* @return ExRatesTable
*/
public function getInstance($rawContent)
return new ExRatesTable($rawContent);
}