- Added TOP property to select and delete to fit MSSQL limit's term. - Added a new interface allowing object's manipulation on save() and load() queries
13 lines
164 B
PHP
13 lines
164 B
PHP
<?php
|
|
|
|
namespace Ulmus\Entity\Field;
|
|
|
|
class Time extends Datetime {
|
|
|
|
public function __toString()
|
|
{
|
|
return $this->format("H:i:s");
|
|
}
|
|
|
|
}
|