Commit 9f1de0ee authored by Benjamin Eberlei's avatar Benjamin Eberlei

Merge branch 'master' of github.com:doctrine/dbal

parents 719f408a 783c1be3
......@@ -21,16 +21,16 @@ if (file_exists($configFile)) {
require $configFile;
foreach ($GLOBALS as $helperSetCandidate) {
if ($helperSetCandidate instanceof \Symfony\Components\Console\Helper\HelperSet) {
if ($helperSetCandidate instanceof \Symfony\Component\Console\Helper\HelperSet) {
$helperSet = $helperSetCandidate;
break;
}
}
}
$helperSet = ($helperSet) ?: new \Symfony\Components\Console\Helper\HelperSet();
$helperSet = ($helperSet) ?: new \Symfony\Component\Console\Helper\HelperSet();
$cli = new \Symfony\Components\Console\Application('Doctrine Command Line Interface', Doctrine\DBAL\Version::VERSION);
$cli = new \Symfony\Component\Console\Application('Doctrine Command Line Interface', Doctrine\DBAL\Version::VERSION);
$cli->setCatchExceptions(true);
$cli->setHelperSet($helperSet);
$cli->addCommands(array(
......@@ -39,4 +39,4 @@ $cli->addCommands(array(
new \Doctrine\DBAL\Tools\Console\Command\ImportCommand(),
));
$cli->run();
\ No newline at end of file
$cli->run();
......@@ -21,8 +21,8 @@
namespace Doctrine\DBAL\Tools\Console\Command;
use Symfony\Components\Console\Input\InputArgument,
Symfony\Components\Console;
use Symfony\Component\Console\Input\InputArgument,
Symfony\Component\Console;
/**
* Task for executing arbitrary SQL that can come from a file or directly from
......@@ -124,4 +124,4 @@ EOT
}
}
}
}
\ No newline at end of file
}
......@@ -21,9 +21,9 @@
namespace Doctrine\DBAL\Tools\Console\Command;
use Symfony\Components\Console\Input\InputArgument,
Symfony\Components\Console\Input\InputOption,
Symfony\Components\Console;
use Symfony\Component\Console\Input\InputArgument,
Symfony\Component\Console\Input\InputOption,
Symfony\Component\Console;
/**
* Task for executing arbitrary SQL that can come from a file or directly from
......@@ -83,4 +83,4 @@ EOT
\Doctrine\Common\Util\Debug::dump($resultSet, (int) $depth);
}
}
\ No newline at end of file
}
......@@ -21,7 +21,7 @@
namespace Doctrine\DBAL\Tools\Console\Helper;
use Symfony\Components\Console\Helper\Helper,
use Symfony\Component\Console\Helper\Helper,
Doctrine\DBAL\Connection;
/**
......@@ -71,4 +71,4 @@ class ConnectionHelper extends Helper
{
return 'connection';
}
}
\ No newline at end of file
}
<?php
namespace Symfony\Components\Console;
use Symfony\Components\Console\Input\InputInterface;
use Symfony\Components\Console\Input\ArgvInput;
use Symfony\Components\Console\Input\ArrayInput;
use Symfony\Components\Console\Input\InputDefinition;
use Symfony\Components\Console\Input\InputOption;
use Symfony\Components\Console\Input\InputArgument;
use Symfony\Components\Console\Output\OutputInterface;
use Symfony\Components\Console\Output\Output;
use Symfony\Components\Console\Output\ConsoleOutput;
use Symfony\Components\Console\Command\Command;
use Symfony\Components\Console\Command\HelpCommand;
use Symfony\Components\Console\Command\ListCommand;
use Symfony\Components\Console\Helper\HelperSet;
use Symfony\Components\Console\Helper\FormatterHelper;
use Symfony\Components\Console\Helper\DialogHelper;
namespace Symfony\Component\Console;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputDefinition;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\Output;
use Symfony\Component\Console\Output\ConsoleOutput;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Command\HelpCommand;
use Symfony\Component\Console\Command\ListCommand;
use Symfony\Component\Console\Helper\HelperSet;
use Symfony\Component\Console\Helper\FormatterHelper;
use Symfony\Component\Console\Helper\DialogHelper;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Command;
use Symfony\Components\Console\Input\InputDefinition;
use Symfony\Components\Console\Input\InputOption;
use Symfony\Components\Console\Input\InputArgument;
use Symfony\Components\Console\Input\InputInterface;
use Symfony\Components\Console\Output\OutputInterface;
use Symfony\Components\Console\Application;
namespace Symfony\Component\Console\Command;
use Symfony\Component\Console\Input\InputDefinition;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Application;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Command;
namespace Symfony\Component\Console\Command;
use Symfony\Components\Console\Input\InputArgument;
use Symfony\Components\Console\Input\InputOption;
use Symfony\Components\Console\Input\InputInterface;
use Symfony\Components\Console\Output\OutputInterface;
use Symfony\Components\Console\Output\Output;
use Symfony\Components\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\Output;
use Symfony\Component\Console\Command\Command;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Command;
namespace Symfony\Component\Console\Command;
use Symfony\Components\Console\Input\InputArgument;
use Symfony\Components\Console\Input\InputOption;
use Symfony\Components\Console\Input\InputInterface;
use Symfony\Components\Console\Output\OutputInterface;
use Symfony\Components\Console\Output\Output;
use Symfony\Components\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\Output;
use Symfony\Component\Console\Command\Command;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Helper;
namespace Symfony\Component\Console\Helper;
use Symfony\Components\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Helper;
namespace Symfony\Component\Console\Helper;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Helper;
namespace Symfony\Component\Console\Helper;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Helper;
namespace Symfony\Component\Console\Helper;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Helper;
namespace Symfony\Component\Console\Helper;
use Symfony\Components\Console\Command\Command;
use Symfony\Component\Console\Command\Command;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Input;
namespace Symfony\Component\Console\Input;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Input;
namespace Symfony\Component\Console\Input;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Input;
namespace Symfony\Component\Console\Input;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Input;
namespace Symfony\Component\Console\Input;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Input;
namespace Symfony\Component\Console\Input;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Input;
namespace Symfony\Component\Console\Input;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Input;
namespace Symfony\Component\Console\Input;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Input;
namespace Symfony\Component\Console\Input;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Output;
namespace Symfony\Component\Console\Output;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Output;
namespace Symfony\Component\Console\Output;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Output;
namespace Symfony\Component\Console\Output;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Output;
namespace Symfony\Component\Console\Output;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Output;
namespace Symfony\Component\Console\Output;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console;
namespace Symfony\Component\Console;
use Symfony\Components\Console\Application;
use Symfony\Components\Console\Input\StringInput;
use Symfony\Components\Console\Output\ConsoleOutput;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Input\StringInput;
use Symfony\Component\Console\Output\ConsoleOutput;
/*
* This file is part of the symfony framework.
......
<?php
namespace Symfony\Components\Console\Tester;
namespace Symfony\Component\Console\Tester;
use Symfony\Components\Console\Application;
use Symfony\Components\Console\Input\ArrayInput;
use Symfony\Components\Console\Output\StreamOutput;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\StreamOutput;
class ApplicationTester
{
......
<?php
namespace Symfony\Components\Console\Tester;
namespace Symfony\Component\Console\Tester;
use Symfony\Components\Console\Command\Command;
use Symfony\Components\Console\Input\ArrayInput;
use Symfony\Components\Console\Output\StreamOutput;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\StreamOutput;
class CommandTester
{
......
<?php
namespace Symfony\Components\Yaml;
namespace Symfony\Component\Yaml;
/*
* This file is part of the symfony package.
......
<?php
namespace Symfony\Components\Yaml;
namespace Symfony\Component\Yaml;
/*
* This file is part of the symfony package.
......
<?php
namespace Symfony\Components\Yaml;
namespace Symfony\Component\Yaml;
/*
* This file is part of the symfony package.
......
<?php
namespace Symfony\Components\Yaml;
namespace Symfony\Component\Yaml;
/*
* This file is part of the symfony package.
......
<?php
namespace Symfony\Components\Yaml;
namespace Symfony\Component\Yaml;
/*
* This file is part of the symfony package.
......
<?php
namespace Symfony\Components\Yaml;
namespace Symfony\Component\Yaml;
/*
* This file is part of the symfony package.
......
Subproject commit 0e78e1a21e69a22389bd3c113f786812c14bd407
Subproject commit df50f65ee707bb148682232c516d5168cf46d987
......@@ -18,7 +18,7 @@ class DbalFunctionalTestCase extends DbalTestCase
protected function resetSharedConn()
{
if ($this->sharedFixture['conn']) {
if (isset($this->sharedFixture['conn'])) {
$this->sharedFixture['conn']->close();
$this->sharedFixture['conn'] = null;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment