You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I came here in desperation. :-) Up to recently I was able to search methods in a Class file structured like this:
<?php
namespace App\Data;
use Symfony\Component\HttpFoundation\RequestStack;
use App\Controller\PrivateController;
class Cron extends PrivateController
{
private $requestStack;
public function __construct(RequestStack $requestStack)
{
$this->requestStack = $requestStack;
$this->session = $this->requestStack->getSession();
}
public function method_1() {
# some code
}
public function method_2() {
# some code
}
public function method_3() {
# some code
}
}
For some reason the extension now only shows me "No symbols found". In the past it would show me something like
method_1
method_2
method_3
Did I break something or can I change something to make this work again?
Thank you for your help. :-)
The text was updated successfully, but these errors were encountered:
Hello,
I came here in desperation. :-) Up to recently I was able to search methods in a Class file structured like this:
For some reason the extension now only shows me "No symbols found". In the past it would show me something like
Did I break something or can I change something to make this work again?
Thank you for your help. :-)
The text was updated successfully, but these errors were encountered: