Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
9f1de0ee
Commit
9f1de0ee
authored
Aug 30, 2010
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:doctrine/dbal
parents
719f408a
783c1be3
Changes
37
Hide whitespace changes
Inline
Side-by-side
Showing
37 changed files
with
92 additions
and
92 deletions
+92
-92
doctrine.php
bin/doctrine.php
+4
-4
ImportCommand.php
lib/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php
+3
-3
RunSqlCommand.php
lib/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php
+4
-4
ConnectionHelper.php
lib/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php
+2
-2
Application.php
lib/vendor/Symfony/Component/Console/Application.php
+17
-17
Command.php
lib/vendor/Symfony/Component/Console/Command/Command.php
+8
-8
HelpCommand.php
lib/vendor/Symfony/Component/Console/Command/HelpCommand.php
+7
-7
ListCommand.php
lib/vendor/Symfony/Component/Console/Command/ListCommand.php
+7
-7
DialogHelper.php
lib/vendor/Symfony/Component/Console/Helper/DialogHelper.php
+2
-2
FormatterHelper.php
...ndor/Symfony/Component/Console/Helper/FormatterHelper.php
+1
-1
Helper.php
lib/vendor/Symfony/Component/Console/Helper/Helper.php
+1
-1
HelperInterface.php
...ndor/Symfony/Component/Console/Helper/HelperInterface.php
+1
-1
HelperSet.php
lib/vendor/Symfony/Component/Console/Helper/HelperSet.php
+2
-2
ArgvInput.php
lib/vendor/Symfony/Component/Console/Input/ArgvInput.php
+1
-1
ArrayInput.php
lib/vendor/Symfony/Component/Console/Input/ArrayInput.php
+1
-1
Input.php
lib/vendor/Symfony/Component/Console/Input/Input.php
+1
-1
InputArgument.php
lib/vendor/Symfony/Component/Console/Input/InputArgument.php
+1
-1
InputDefinition.php
...endor/Symfony/Component/Console/Input/InputDefinition.php
+1
-1
InputInterface.php
...vendor/Symfony/Component/Console/Input/InputInterface.php
+1
-1
InputOption.php
lib/vendor/Symfony/Component/Console/Input/InputOption.php
+1
-1
StringInput.php
lib/vendor/Symfony/Component/Console/Input/StringInput.php
+1
-1
ConsoleOutput.php
...vendor/Symfony/Component/Console/Output/ConsoleOutput.php
+1
-1
NullOutput.php
lib/vendor/Symfony/Component/Console/Output/NullOutput.php
+1
-1
Output.php
lib/vendor/Symfony/Component/Console/Output/Output.php
+1
-1
OutputInterface.php
...ndor/Symfony/Component/Console/Output/OutputInterface.php
+1
-1
StreamOutput.php
lib/vendor/Symfony/Component/Console/Output/StreamOutput.php
+1
-1
Shell.php
lib/vendor/Symfony/Component/Console/Shell.php
+4
-4
ApplicationTester.php
...or/Symfony/Component/Console/Tester/ApplicationTester.php
+4
-4
CommandTester.php
...vendor/Symfony/Component/Console/Tester/CommandTester.php
+4
-4
Dumper.php
lib/vendor/Symfony/Component/Yaml/Dumper.php
+1
-1
Exception.php
lib/vendor/Symfony/Component/Yaml/Exception.php
+1
-1
Inline.php
lib/vendor/Symfony/Component/Yaml/Inline.php
+1
-1
Parser.php
lib/vendor/Symfony/Component/Yaml/Parser.php
+1
-1
ParserException.php
lib/vendor/Symfony/Component/Yaml/ParserException.php
+1
-1
Yaml.php
lib/vendor/Symfony/Component/Yaml/Yaml.php
+1
-1
doctrine-common
lib/vendor/doctrine-common
+1
-1
DbalFunctionalTestCase.php
tests/Doctrine/Tests/DbalFunctionalTestCase.php
+1
-1
No files found.
bin/doctrine.php
View file @
9f1de0ee
...
...
@@ -21,16 +21,16 @@ if (file_exists($configFile)) {
require
$configFile
;
foreach
(
$GLOBALS
as
$helperSetCandidate
)
{
if
(
$helperSetCandidate
instanceof
\Symfony\Component
s
\Console\Helper\HelperSet
)
{
if
(
$helperSetCandidate
instanceof
\Symfony\Component\Console\Helper\HelperSet
)
{
$helperSet
=
$helperSetCandidate
;
break
;
}
}
}
$helperSet
=
(
$helperSet
)
?:
new
\Symfony\Component
s
\Console\Helper\HelperSet
();
$helperSet
=
(
$helperSet
)
?:
new
\Symfony\Component\Console\Helper\HelperSet
();
$cli
=
new
\Symfony\Component
s
\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
();
lib/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php
View file @
9f1de0ee
...
...
@@ -21,8 +21,8 @@
namespace
Doctrine\DBAL\Tools\Console\Command
;
use
Symfony\Component
s
\Console\Input\InputArgument
,
Symfony\Component
s
\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
}
lib/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php
View file @
9f1de0ee
...
...
@@ -21,9 +21,9 @@
namespace
Doctrine\DBAL\Tools\Console\Command
;
use
Symfony\Component
s
\Console\Input\InputArgument
,
Symfony\Component
s
\Console\Input\InputOption
,
Symfony\Component
s
\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
}
lib/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php
View file @
9f1de0ee
...
...
@@ -21,7 +21,7 @@
namespace
Doctrine\DBAL\Tools\Console\Helper
;
use
Symfony\Component
s
\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
}
lib/vendor/Symfony/Component
s
/Console/Application.php
→
lib/vendor/Symfony/Component/Console/Application.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console
;
use
Symfony\Component
s
\Console\Input\InputInterface
;
use
Symfony\Component
s
\Console\Input\ArgvInput
;
use
Symfony\Component
s
\Console\Input\ArrayInput
;
use
Symfony\Component
s
\Console\Input\InputDefinition
;
use
Symfony\Component
s
\Console\Input\InputOption
;
use
Symfony\Component
s
\Console\Input\InputArgument
;
use
Symfony\Component
s
\Console\Output\OutputInterface
;
use
Symfony\Component
s
\Console\Output\Output
;
use
Symfony\Component
s
\Console\Output\ConsoleOutput
;
use
Symfony\Component
s
\Console\Command\Command
;
use
Symfony\Component
s
\Console\Command\HelpCommand
;
use
Symfony\Component
s
\Console\Command\ListCommand
;
use
Symfony\Component
s
\Console\Helper\HelperSet
;
use
Symfony\Component
s
\Console\Helper\FormatterHelper
;
use
Symfony\Component
s
\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.
...
...
lib/vendor/Symfony/Component
s
/Console/Command/Command.php
→
lib/vendor/Symfony/Component/Console/Command/Command.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Command
;
use
Symfony\Component
s
\Console\Input\InputDefinition
;
use
Symfony\Component
s
\Console\Input\InputOption
;
use
Symfony\Component
s
\Console\Input\InputArgument
;
use
Symfony\Component
s
\Console\Input\InputInterface
;
use
Symfony\Component
s
\Console\Output\OutputInterface
;
use
Symfony\Component
s
\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.
...
...
lib/vendor/Symfony/Component
s
/Console/Command/HelpCommand.php
→
lib/vendor/Symfony/Component/Console/Command/HelpCommand.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Command
;
namespace
Symfony\Component\Console\Command
;
use
Symfony\Component
s
\Console\Input\InputArgument
;
use
Symfony\Component
s
\Console\Input\InputOption
;
use
Symfony\Component
s
\Console\Input\InputInterface
;
use
Symfony\Component
s
\Console\Output\OutputInterface
;
use
Symfony\Component
s
\Console\Output\Output
;
use
Symfony\Component
s
\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.
...
...
lib/vendor/Symfony/Component
s
/Console/Command/ListCommand.php
→
lib/vendor/Symfony/Component/Console/Command/ListCommand.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Command
;
namespace
Symfony\Component\Console\Command
;
use
Symfony\Component
s
\Console\Input\InputArgument
;
use
Symfony\Component
s
\Console\Input\InputOption
;
use
Symfony\Component
s
\Console\Input\InputInterface
;
use
Symfony\Component
s
\Console\Output\OutputInterface
;
use
Symfony\Component
s
\Console\Output\Output
;
use
Symfony\Component
s
\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.
...
...
lib/vendor/Symfony/Component
s
/Console/Helper/DialogHelper.php
→
lib/vendor/Symfony/Component/Console/Helper/DialogHelper.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Helper
;
namespace
Symfony\Component\Console\Helper
;
use
Symfony\Component
s
\Console\Output\OutputInterface
;
use
Symfony\Component\Console\Output\OutputInterface
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Helper/FormatterHelper.php
→
lib/vendor/Symfony/Component/Console/Helper/FormatterHelper.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Helper
;
namespace
Symfony\Component\Console\Helper
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Helper/Helper.php
→
lib/vendor/Symfony/Component/Console/Helper/Helper.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Helper
;
namespace
Symfony\Component\Console\Helper
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Helper/HelperInterface.php
→
lib/vendor/Symfony/Component/Console/Helper/HelperInterface.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Helper
;
namespace
Symfony\Component\Console\Helper
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Helper/HelperSet.php
→
lib/vendor/Symfony/Component/Console/Helper/HelperSet.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Helper
;
namespace
Symfony\Component\Console\Helper
;
use
Symfony\Component
s
\Console\Command\Command
;
use
Symfony\Component\Console\Command\Command
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Input/ArgvInput.php
→
lib/vendor/Symfony/Component/Console/Input/ArgvInput.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Input
;
namespace
Symfony\Component\Console\Input
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Input/ArrayInput.php
→
lib/vendor/Symfony/Component/Console/Input/ArrayInput.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Input
;
namespace
Symfony\Component\Console\Input
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Input/Input.php
→
lib/vendor/Symfony/Component/Console/Input/Input.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Input
;
namespace
Symfony\Component\Console\Input
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Input/InputArgument.php
→
lib/vendor/Symfony/Component/Console/Input/InputArgument.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Input
;
namespace
Symfony\Component\Console\Input
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Input/InputDefinition.php
→
lib/vendor/Symfony/Component/Console/Input/InputDefinition.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Input
;
namespace
Symfony\Component\Console\Input
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Input/InputInterface.php
→
lib/vendor/Symfony/Component/Console/Input/InputInterface.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Input
;
namespace
Symfony\Component\Console\Input
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Input/InputOption.php
→
lib/vendor/Symfony/Component/Console/Input/InputOption.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Input
;
namespace
Symfony\Component\Console\Input
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Input/StringInput.php
→
lib/vendor/Symfony/Component/Console/Input/StringInput.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Input
;
namespace
Symfony\Component\Console\Input
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Output/ConsoleOutput.php
→
lib/vendor/Symfony/Component/Console/Output/ConsoleOutput.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Output
;
namespace
Symfony\Component\Console\Output
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Output/NullOutput.php
→
lib/vendor/Symfony/Component/Console/Output/NullOutput.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Output
;
namespace
Symfony\Component\Console\Output
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Output/Output.php
→
lib/vendor/Symfony/Component/Console/Output/Output.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Output
;
namespace
Symfony\Component\Console\Output
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Output/OutputInterface.php
→
lib/vendor/Symfony/Component/Console/Output/OutputInterface.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Output
;
namespace
Symfony\Component\Console\Output
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Output/StreamOutput.php
→
lib/vendor/Symfony/Component/Console/Output/StreamOutput.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Output
;
namespace
Symfony\Component\Console\Output
;
/*
* This file is part of the symfony framework.
...
...
lib/vendor/Symfony/Component
s
/Console/Shell.php
→
lib/vendor/Symfony/Component/Console/Shell.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console
;
namespace
Symfony\Component\Console
;
use
Symfony\Component
s
\Console\Application
;
use
Symfony\Component
s
\Console\Input\StringInput
;
use
Symfony\Component
s
\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.
...
...
lib/vendor/Symfony/Component
s
/Console/Tester/ApplicationTester.php
→
lib/vendor/Symfony/Component/Console/Tester/ApplicationTester.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Tester
;
namespace
Symfony\Component\Console\Tester
;
use
Symfony\Component
s
\Console\Application
;
use
Symfony\Component
s
\Console\Input\ArrayInput
;
use
Symfony\Component
s
\Console\Output\StreamOutput
;
use
Symfony\Component\Console\Application
;
use
Symfony\Component\Console\Input\ArrayInput
;
use
Symfony\Component\Console\Output\StreamOutput
;
class
ApplicationTester
{
...
...
lib/vendor/Symfony/Component
s
/Console/Tester/CommandTester.php
→
lib/vendor/Symfony/Component/Console/Tester/CommandTester.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Console\Tester
;
namespace
Symfony\Component\Console\Tester
;
use
Symfony\Component
s
\Console\Command\Command
;
use
Symfony\Component
s
\Console\Input\ArrayInput
;
use
Symfony\Component
s
\Console\Output\StreamOutput
;
use
Symfony\Component\Console\Command\Command
;
use
Symfony\Component\Console\Input\ArrayInput
;
use
Symfony\Component\Console\Output\StreamOutput
;
class
CommandTester
{
...
...
lib/vendor/Symfony/Component
s
/Yaml/Dumper.php
→
lib/vendor/Symfony/Component/Yaml/Dumper.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Yaml
;
namespace
Symfony\Component\Yaml
;
/*
* This file is part of the symfony package.
...
...
lib/vendor/Symfony/Component
s
/Yaml/Exception.php
→
lib/vendor/Symfony/Component/Yaml/Exception.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Yaml
;
namespace
Symfony\Component\Yaml
;
/*
* This file is part of the symfony package.
...
...
lib/vendor/Symfony/Component
s
/Yaml/Inline.php
→
lib/vendor/Symfony/Component/Yaml/Inline.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Yaml
;
namespace
Symfony\Component\Yaml
;
/*
* This file is part of the symfony package.
...
...
lib/vendor/Symfony/Component
s
/Yaml/Parser.php
→
lib/vendor/Symfony/Component/Yaml/Parser.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Yaml
;
namespace
Symfony\Component\Yaml
;
/*
* This file is part of the symfony package.
...
...
lib/vendor/Symfony/Component
s
/Yaml/ParserException.php
→
lib/vendor/Symfony/Component/Yaml/ParserException.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Yaml
;
namespace
Symfony\Component\Yaml
;
/*
* This file is part of the symfony package.
...
...
lib/vendor/Symfony/Component
s
/Yaml/Yaml.php
→
lib/vendor/Symfony/Component/Yaml/Yaml.php
View file @
9f1de0ee
<?php
namespace
Symfony\Component
s
\Yaml
;
namespace
Symfony\Component\Yaml
;
/*
* This file is part of the symfony package.
...
...
doctrine-common
@
df50f65e
Subproject commit
0e78e1a21e69a22389bd3c113f786812c14bd40
7
Subproject commit
df50f65ee707bb148682232c516d5168cf46d98
7
tests/Doctrine/Tests/DbalFunctionalTestCase.php
View file @
9f1de0ee
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment