* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Adapter\File; use Tools; /** * Class RobotsTextFileGenerator is responsible for generating robots txt file. */ class RobotsTextFileGenerator { /** * Generates the robots.txt file. * * @return bool */ public function generateFile() { return Tools::generateRobotsFile(true); } }