commercetools-8.x-1.2-alpha1/modules/commercetools_demo/tests/profiles/commercetools_demo_test_profile/commercetools_demo_test_profile.install
modules/commercetools_demo/tests/profiles/commercetools_demo_test_profile/commercetools_demo_test_profile.install
<?php
/**
* @file
* Contains install and update functions for the module.
*/
declare(strict_types=1);
/**
* Implements hook_install().
*/
function commercetools_demo_test_profile_install() {
// The "commercetools_demo_test" can be installed only after the theme.
\Drupal::service('theme_installer')->install(['stark']);
\Drupal::service('module_installer')->install(['commercetools_demo_test']);
}
