phplaravellaravel-4php-parser

What is Laravel using PHPParser(nikic) for?


I'm facing an issue where the parser is going out of memory -

And this is happening when I'm sending an email at that too in only a scenario.
I'm trying to understand what Laravel is trying to do here, so I can resolve this issue.

Laravel version 4.0
PHPHarser verison 0.9


Solution

  • Your memory limit is set a 32 megabytes. This is extremely low. The amount of information that is being processed in your script is simply greater than that amount.

    The correct solution is to increase your memory limit.