Skip to content

Commit

Permalink
Remove extra interface integration where parent classes exist
Browse files Browse the repository at this point in the history
  • Loading branch information
David Yell committed Jul 29, 2016
1 parent d63423e commit c99ac1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/Database/Type/DateType.php
Expand Up @@ -15,10 +15,9 @@
namespace Cake\Database\Type;

use Cake\Database\Driver;
use Cake\Database\TypeInterface;
use DateTime;

class DateType extends DateTimeType implements TypeInterface
class DateType extends DateTimeType
{

/**
Expand Down
4 changes: 1 addition & 3 deletions src/Database/Type/TimeType.php
Expand Up @@ -14,14 +14,12 @@
*/
namespace Cake\Database\Type;

use Cake\Database\TypeInterface;

/**
* Time type converter.
*
* Use to convert time instances to strings & back.
*/
class TimeType extends DateTimeType implements TypeInterface
class TimeType extends DateTimeType
{

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type/UuidType.php
Expand Up @@ -22,7 +22,7 @@
/**
* Provides behavior for the UUID type
*/
class UuidType extends StringType implements TypeInterface
class UuidType extends StringType
{

/**
Expand Down

0 comments on commit c99ac1c

Please sign in to comment.