我目前正在尝试通过在终端中执行命令来执行 CRON 作业。但它会引发以下错误。
PHP Fatal error: Call to a member function has() on a non-object in /MyProject/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php on line 161
这是我在命令文件中的代码。
namespace MyProject\UtilityBundle\Command;
use Symfony\Component\Console\Command\Command;
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 projectOngoingCommand extends Command
{
protected function configure()
{
$this
->setName('projectOngoingEstimation:submit')
->setDescription('Submit Ongoing Project Estimation')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
;
$projectController= new \MyProject\ProjectBundle\Controller\DefaultController();
$msg = $projectController->updateMonthlyOngoingAllocation();
$output->writeln($msg);
}
}
这是我在默认控制器中的代码。
// cron job code
public function updateMonthlyOngoingAllocation() {
$em = $this->getDoctrine()->getEntityManager();
$project = $this->getDoctrine()->getRepository('MyProjectEntityBundle:Project')
->getAllOngoingProjectList();
return "hello";
}
使用命令调用此方法成功
sudo php app/console projectOngoingEstimation:submit
但它在第一行抛出错误。IE
$em = $this->getDoctrine()->getEntityManager();
当我尝试从控制器中的另一个 Action 方法调用该函数时,它工作正常。