25 lines
545 B
PHP
25 lines
545 B
PHP
<?php
|
|
namespace Consolidation\SiteAlias;
|
|
|
|
use \Drush\Config\Environment;
|
|
|
|
trait FixtureFactory
|
|
{
|
|
protected function fixturesDir()
|
|
{
|
|
return dirname(__DIR__) . '/fixtures';
|
|
}
|
|
|
|
protected function homeDir()
|
|
{
|
|
return $this->fixturesDir() . '/home';
|
|
}
|
|
|
|
// It is still an aspirational goal to add Drupal 7 support back to Drush. :P
|
|
// For now, only Drupal 8 is supported.
|
|
protected function siteDir($majorVersion = '8')
|
|
{
|
|
return $this->fixturesDir() . '/sites/d' . $majorVersion;
|
|
}
|
|
}
|