eugene-matvejev/battleship-game-api

View on GitHub
src/FoundationBundle/ORM/TimestampedInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace EM\FoundationBundle\ORM;

/**
 * @since 3.1
 */
interface TimestampedInterface
{
    public function setTimestamp();

    public function getTimestamp() : \DateTime;
}