View Single Post
Old 11-29-2007, 03:58 AM   #2 (permalink)
Wildhoney
La Vida es Sueño
Advanced Programmer Top Contributor 
 
Wildhoney's Avatar
 
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
Wildhoney is on a distinguished road
Default

One problem that immediately springs up is the fact that you haven't used any scopes on your functions. For instance, you've prefixed some functions, such as _query, with the underscore, which tends to be indicative of a private function by Zend Framework standards. However, no scope has been set.

The scopes consist of the following:
  • Private: Only members in the same class has access.
  • Protected: Only members of the same class and those extended have access.
  • Public: Everybody has access (default)

I'll have myself a good read through tomorrow though and see what I can pick out. It does look like a good attempt nonetheless.
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
Send a message via AIM to Wildhoney Send a message via MSN to Wildhoney Send a message via Yahoo to Wildhoney
Wildhoney is offline  
Reply With Quote