Skip to content

Commit

Permalink
Changing casing of function in interface
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Nov 23, 2015
1 parent 8bcfeb3 commit 2d363d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Database/FieldTypeConverter.php
Expand Up @@ -51,7 +51,7 @@ public function __construct(TypeMap $typeMap, Driver $driver)
$result = [];

foreach ($types as $k => $type) {
if ($type instanceof OptionalConvertInterface && !$type->requiresToPHPCast()) {
if ($type instanceof OptionalConvertInterface && !$type->requiresToPhpCast()) {
unset($types[$k]);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type/OptionalConvertInterface.php
Expand Up @@ -27,5 +27,5 @@ interface OptionalConvertInterface
*
* @return boolean
*/
public function requiresToPHPCast();
public function requiresToPhpCast();
}

0 comments on commit 2d363d8

Please sign in to comment.