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
dcc18f0e
Commit
dcc18f0e
authored
Sep 05, 2015
by
Marco Pivetta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#869 - DBAL-1293 - cleaning up error message generation
parent
ef4bd5d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
ConversionException.php
lib/Doctrine/DBAL/Types/ConversionException.php
+12
-7
No files found.
lib/Doctrine/DBAL/Types/ConversionException.php
View file @
dcc18f0e
...
...
@@ -69,16 +69,17 @@ class ConversionException extends \Doctrine\DBAL\DBALException
/**
* Thrown when the PHP value passed to the converter was not of the expected type.
*
* @param mixed $value
* @param string $fromType
* @param mixed $value
* @param string $toType
* @param string[] $possibleTypes
*
* @return \Doctrine\DBAL\Types\ConversionException
*/
static
public
function
conversionFailedInvalidType
(
$value
,
$toType
,
$fromType
)
static
public
function
conversionFailedInvalidType
(
$value
,
$toType
,
array
$possibleTypes
)
{
$actualType
=
gettype
(
$value
);
if
(
$actualType
===
'object'
)
{
$actualType
.=
" ("
.
get_class
(
$value
)
.
")"
;
$actualType
.=
' ('
.
get_class
(
$value
)
.
')'
;
if
(
!
method_exists
(
$value
,
'__toString'
))
{
$value
=
'object'
;
}
...
...
@@ -86,8 +87,12 @@ class ConversionException extends \Doctrine\DBAL\DBALException
$value
=
(
string
)
$value
;
$value
=
(
strlen
(
$value
)
>
32
)
?
substr
(
$value
,
0
,
20
)
.
"..."
:
$value
;
return
new
self
(
"Could not convert PHP value '
$value
' of type '
$actualType
' to type
$toType
. Expected type:
$fromType
"
);
return
new
self
(
sprintf
(
"Could not convert PHP value '%s' of type '%s' to type '%s'. Expected one of the following: %s"
,
$value
,
$actualType
,
$toType
,
implode
(
', '
,
$possibleTypes
)
));
}
}
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