for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* IEntityEditor.php
*
* @copyright More in license.md
* @license http://www.ipublikuj.eu
* @author Adam Kadlec http://www.ipublikuj.eu
* @package iPublikuj:DoctrineBlameable!
* @subpackage Entities
* @since 1.0.0
* @date 11.11.15
*/
declare(strict_types = 1);
namespace IPub\DoctrineBlameable\Entities;
* Doctrine blameable editor entity interface
* @author Adam Kadlec <[email protected]>
interface IEntityEditor
{
* @param mixed $updatedBy
function setUpdatedBy($updatedBy);
* @return mixed
function getUpdatedBy();
}