First: I have read all of the possible duplicate posts for this, and I have looked over several sources of documentation and examples, which I have replicated in the below code. However I'm getting syntax errors when writing this in Aptana 3. Is this syntax not legal, or is it perhaps a problem with my environment?
class Story {
private $storyText;
function build () use ($storyText) {
$storyText .= "blabla";
};
}