View Single Post
Codemonkey's Avatar Codemonkey Codemonkey is offline Super Moderator 5 Blog Entries 2008-04-23 #213 Old  
it's because setters/getters with set and get appear as properties to the outside world, not actually an interface. The fact they are really are methods is not guaranteed to the outside world, hence you can't add those kind of setters/getters to an interface.

In your case you might as wel remove the interface itself, since you also have an AbstractController, which really also defines an interface.
Reply With Quote