In SparqlParser.php parseDescribe function, line 415:
while(strtolower(current($this->tokens))!='from'& strtolower(current($this->tokens))!='where'){
This does not allow the WHERE keyword to be optional as per the W3C grammar. The line needs to be:
while(strtolower(current($this->tokens))!='from' & strtolower(current($this->tokens))!='where' & current($this->tokens)!='{'){
...or something more concise :D