for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Sync\Entity\Task;
use AppBundle\Sync\Entity\Task;
/**
* "Update" task
*
* @author Sergey Sadovoi <[email protected]>
*/
class Update extends Add
{
* {@inheritdoc}
protected $name = 'update';
public function getMessageSuccess()
return sprintf('Updated %s', basename($this->getSourcePath()));
}