I\'m trying to reduce the warnings that are sent to my apache server log.
One warning is:
Call-time pass-by-reference has bee
You could pass an array with a reference in:
public function takeScriptsWithMarker(array(&$lines, $marker))
which should only take a small amount of refactoring at the other end.