ulmus/src/Entity/Field/Time.php
Dave Mc Nicoll 2f43fb4559 - More work done on Update, Insert and Delete clause
- 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
2020-02-07 16:36:38 -05:00

13 lines
164 B
PHP

<?php
namespace Ulmus\Entity\Field;
class Time extends Datetime {
public function __toString()
{
return $this->format("H:i:s");
}
}