The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
18
{
19
if ($this->container === null)
20
{
21
/** @var Application $application */
22
$application = $this->getApplication();
23
24
if ($application === null)
25
{
26
throw new \LogicException('The container cannot be retrieved as the application instance is not yet set.');
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.