12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Gedmo\Loggable\Document;
- use Gedmo\Loggable\Log as BaseLog;
- /**
- * @Document
- */
- class Log extends BaseLog
- {
- /**
- * @Id
- */
- protected $id;
- /**
- * @String
- */
- protected $user;
- /**
- * @String
- */
- protected $action;
- /**
- * The return value of __toString
- *
- * @String
- */
- protected $object;
- /**
- * @Date
- */
- protected $date;
- public function actualizeDate()
- {
- $this->date = new \MongoDate();
- }
- }
|