for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Entity;
use Tarantool\Mapper\Entity;
class Post extends Entity
{
/**
* @var integer
*/
public $id;
* @var string
public $text;
public function afterCreate()
$this->text .= '!';
}
public function afterUpdate()
$this->text .= '.';