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
291d89c3
Commit
291d89c3
authored
Nov 29, 2018
by
Benjamin Morel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up redundant annotations and dead code
parent
1c680e19
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
10 deletions
+0
-10
BlobTest.php
tests/Doctrine/Tests/DBAL/Functional/BlobTest.php
+0
-1
DataAccessTest.php
tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php
+0
-2
MasterSlaveConnectionTest.php
...trine/Tests/DBAL/Functional/MasterSlaveConnectionTest.php
+0
-1
ModifyLimitQueryTest.php
...s/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php
+0
-1
PortabilityTest.php
tests/Doctrine/Tests/DBAL/Functional/PortabilityTest.php
+0
-1
TypeConversionTest.php
tests/Doctrine/Tests/DBAL/Functional/TypeConversionTest.php
+0
-3
WriteTest.php
tests/Doctrine/Tests/DBAL/Functional/WriteTest.php
+0
-1
No files found.
tests/Doctrine/Tests/DBAL/Functional/BlobTest.php
View file @
291d89c3
...
...
@@ -22,7 +22,6 @@ class BlobTest extends DbalFunctionalTestCase
{
parent
::
setUp
();
/** @var AbstractSchemaManager $sm */
$table
=
new
Table
(
'blob_table'
);
$table
->
addColumn
(
'id'
,
'integer'
);
$table
->
addColumn
(
'clobfield'
,
'text'
);
...
...
tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php
View file @
291d89c3
...
...
@@ -42,7 +42,6 @@ class DataAccessTest extends DbalFunctionalTestCase
return
;
}
/** @var AbstractSchemaManager $sm */
$table
=
new
Table
(
'fetch_table'
);
$table
->
addColumn
(
'test_int'
,
'integer'
);
$table
->
addColumn
(
'test_string'
,
'string'
);
...
...
@@ -601,7 +600,6 @@ class DataAccessTest extends DbalFunctionalTestCase
$table
->
addColumn
(
'test_days'
,
'integer'
);
$table
->
setPrimaryKey
([
'test_date'
]);
/** @var AbstractSchemaManager $sm */
$sm
=
$this
->
connection
->
getSchemaManager
();
$sm
->
createTable
(
$table
);
...
...
tests/Doctrine/Tests/DBAL/Functional/MasterSlaveConnectionTest.php
View file @
291d89c3
...
...
@@ -32,7 +32,6 @@ class MasterSlaveConnectionTest extends DbalFunctionalTestCase
}
try
{
/** @var AbstractSchemaManager $sm */
$table
=
new
Table
(
'master_slave_table'
);
$table
->
addColumn
(
'test_int'
,
'integer'
);
$table
->
setPrimaryKey
([
'test_int'
]);
...
...
tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php
View file @
291d89c3
...
...
@@ -19,7 +19,6 @@ class ModifyLimitQueryTest extends DbalFunctionalTestCase
parent
::
setUp
();
if
(
!
self
::
$tableCreated
)
{
/** @var AbstractSchemaManager $sm */
$table
=
new
Table
(
'modify_limit_table'
);
$table
->
addColumn
(
'test_int'
,
'integer'
);
$table
->
setPrimaryKey
([
'test_int'
]);
...
...
tests/Doctrine/Tests/DBAL/Functional/PortabilityTest.php
View file @
291d89c3
...
...
@@ -51,7 +51,6 @@ class PortabilityTest extends DbalFunctionalTestCase
$this
->
portableConnection
=
DriverManager
::
getConnection
(
$params
,
$this
->
connection
->
getConfiguration
(),
$this
->
connection
->
getEventManager
());
try
{
/** @var AbstractSchemaManager $sm */
$table
=
new
Table
(
'portability_table'
);
$table
->
addColumn
(
'Test_Int'
,
'integer'
);
$table
->
addColumn
(
'Test_String'
,
'string'
,
[
'fixed'
=>
true
,
'length'
=>
32
]);
...
...
tests/Doctrine/Tests/DBAL/Functional/TypeConversionTest.php
View file @
291d89c3
...
...
@@ -20,9 +20,6 @@ class TypeConversionTest extends DbalFunctionalTestCase
{
parent
::
setUp
();
/** @var AbstractSchemaManager $sm */
$sm
=
$this
->
connection
->
getSchemaManager
();
$table
=
new
Table
(
'type_conversion'
);
$table
->
addColumn
(
'id'
,
'integer'
,
[
'notnull'
=>
false
]);
$table
->
addColumn
(
'test_string'
,
'string'
,
[
'notnull'
=>
false
]);
...
...
tests/Doctrine/Tests/DBAL/Functional/WriteTest.php
View file @
291d89c3
...
...
@@ -20,7 +20,6 @@ class WriteTest extends DbalFunctionalTestCase
parent
::
setUp
();
try
{
/** @var AbstractSchemaManager $sm */
$table
=
new
Table
(
'write_table'
);
$table
->
addColumn
(
'id'
,
'integer'
,
[
'autoincrement'
=>
true
]);
$table
->
addColumn
(
'test_int'
,
'integer'
);
...
...
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