Skip to content

Commit

Permalink
Move preflight classes to their own namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Jul 28, 2017
1 parent 897f8ac commit 2bb622e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dr
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ $environment->setLoader($loader);
$environment->applyEnvironment();

// Preflight and run
$preflight = new \Drush\Boot\Preflight($environment);
$preflight = new \Drush\Preflight\Preflight($environment);
$status_code = $preflight->run($_SERVER['argv']);

exit($status_code);
2 changes: 1 addition & 1 deletion isolation/tests/ArgsPreprocessorTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Drush\Boot;
namespace Drush\Preflight;

class ArgsPreprocessorTest extends \PHPUnit_Framework_TestCase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Drush\Boot;
namespace Drush\Preflight;

/**
* Preprocess commandline arguments.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Drush\Boot;
namespace Drush\Preflight;

use Drush\Drush;
use Drush\Cache\CommandCache;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Drush\Boot;
namespace Drush\Preflight;

use Drush\Drush;
use Drush\Config\Environment;
Expand Down
2 changes: 1 addition & 1 deletion src/Boot/Preflight.php → src/Preflight/Preflight.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Drush\Boot;
namespace Drush\Preflight;

use Composer\Autoload\ClassLoader;
use Drush\Drush;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Drush\Boot;
namespace Drush\Preflight;

/**
* Storage for arguments preprocessed during preflight.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Drush\Boot;
namespace Drush\Preflight;

/**
* Storage for arguments preprocessed during preflight.
Expand Down

0 comments on commit 2bb622e

Please sign in to comment.