Files
woocommerce/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php
2021-12-10 12:03:04 +00:00

13 lines
305 B
PHP

<?php
namespace Composer\Installers;
class StarbugInstaller extends BaseInstaller
{
protected $locations = array(
'module' => 'modules/{$name}/',
'theme' => 'themes/{$name}/',
'custom-module' => 'app/modules/{$name}/',
'custom-theme' => 'app/themes/{$name}/'
);
}