Всем привет. поставил симфони 6.
Делаю первый контроллер и приложение не собирается
Пробовал переносить аттрибут на метод, менял сам атрибут - не работает
HomePageController:
<?php
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
#[Route(path: '/homepage')]
class HomePageController extends AbstractController
{
public function __invoke()
{
$this->json(['success' => true], Response::HTTP_OK);
}
}
annotations.yaml
controllers:
resource: ../../src/Controller/
type: annotation
kernel:
resource: ../../src/Kernel.php
type: annotation
Когда выполняю console cache:clear получаю ошибку 139
Executing script cache:clear [KO]
[KO]
Script cache:clear returned with error code 139
!!
!! // Clearing the cache for the dev environment with debug
!! // true
!!
!! Segmentation fault
!!
Script @auto-scripts was called via post-install-cmd