* @author PrestaShop SA * @copyright 2017-2018 thirty bees * @copyright 2007-2016 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * PrestaShop is an internationally registered trademark & property of PrestaShop SA */ /** * Class LibraryModuleCore * * @since 1.0.0 */ abstract class LibraryModuleCore extends Module { /** * Register the error handlers * * This function lets the `LibraryModule` register the necessary autoloader for the libraries it contains. * * @return bool * * @since 1.0.1 */ abstract public function hookActionRegisterAutoloader(); }