for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dtc\QueueBundle\Doctrine;
trait ProgressCallbackTrait
{
protected function updateProgress($callback, $count, $totalCount = null)
if (is_callable($callback)) {
call_user_func($callback, $count, $totalCount);
}