Я пытаюсь создать команду Symfony, в которой она запускает запрос и в конечном итоге запускает его как cronjob.У кого-нибудь есть опыт с этим?Вот мой код до сих пор.Мне интересно, где я должен создать свой запрос в.
namespace KCM\GivingBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class GivingTranReport extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('giving:report')
->setDescriptio('Runs query for giving transactions on hold')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
}