for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tarantool\Mapper;
class Entity
{
private $_repository;
public function __construct(Repository $repository)
$this->_repository = $repository;
}
public function getRepository()
return $this->_repository;
public function save()
$this->getRepository()->save($this);